你好,经过几个小时的搜索,我发现一个适用于我的iframe的脚本会出现一个问题,它永远不会停止它会增加高度而不会停止...这里是代码 我在我的页面添加此脚本我想要iframe
<script>
function alertsize(pixels){
pixels+=0;
document.getElementById('myiframe').style.height=pixels+"px";
}
</script>
<script type="text/javascript">
var myHeight = 0;
setInterval(function(){
if(myHeight != document.body.scrollHeight){
myHeight = document.body.scrollHeight;
parent.alertsize(myHeight);
}
},500);
</script>
这里是iframe:
<iframe id="myiframe" src="http://www.altasoft.gr/hermes/index.html"
name="myiframe" width="100%" height="100%" scrolling="no"
frameborder="0"></iframe>
答案 0 :(得分:0)
问题在于标记中的height="100%"
。将其更改为固定的像素值,脚本将开始工作。因此,将height="100%"
更改为height="1"
或其他任何内容,确切的值并不重要。