作者:狐灵科技 | 2019-12-23 12:12 |点击:
<script type="text/javascript">
$(document ).ready(function(){
$("a" ).attr("target" , "_parent" ); //_top
});
</script>
注意该代码应该加在需要加载的iframe 框架里面
示例:
<iframe src="/ceshi" frameborder="0" scrolling="no" id="test" width="100%" onload="this.height=100"></iframe> |
|
<script type="text/javascript"> |
|
function reinitIframe(){ |
|
var iframe = document.getElementById("test"); |
|
try{ |
|
var bHeight = iframe.contentWindow.document.body.scrollHeight; |
|
var dHeight = iframe.contentWindow.document.documentElement.scrollHeight; |
|
var height = Math.max(bHeight, dHeight); |
|
iframe.height = height; |
|
console.log(height); |
|
}catch (ex){} |
|
} |
|
window.setInterval("reinitIframe()", 200); |
|
</script> |