在帝国cms内容页模板显示该信息的下线时间
作者: 本站原创 发布时间: 浏览: 次
<iframe frameborder="0" src="http://网址" class="iframe" frameborder="0" id="test" onload="this.height=100" width="762px" scrolling="no"></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>