利用 JavaScript 动态调整 iFrame 高度
努力消除滚动条的需要并创建适应其内容的响应式 iframe ,考虑采用以下解决方案:
Head 部分修改:
在
引入以下脚本您网页的部分:<script> function resizeIframe(obj) { obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px'; } </script>
iFrame 修改:
修改您的 iframe 代码,如下所示:
<iframe src="..." frameborder="0" scrolling="no" onload="resizeIframe(this)" />
此 JavaScript 函数检索iframe 内容文档的高度并相应地设置 iframe 的高度。当 iframe 首次加载或内容发生变化时,会触发 resizeIframe 函数,确保 iframe 的高度始终与其内容同步。
以上是如何用JavaScript动态调整iFrame高度?的详细内容。更多信息请关注PHP中文网其他相关文章!