页面上多个iframe,如何执行自适应高度
页面上多个iframe,如何执行自适应高度<script type="text/javascript"> function reinitIframe(){ var iframe = document.getElementById("iframeid");
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>
是因为你获取的是id嘛,因为id标签不可以设置多个。 id标签设置多个无效
有插件的 要起到什么目的呢 不可以设置多个ID标签 :o
页:
[1]