• 页面上多个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>

  • vicky    2019-12-02 19:03:23
  • 阅读 939    收藏 0    回答 1
  • 邀请
  • 收藏
  • 分享
发送
登录 后发表评论
  • 51testing软件测试圈微信