实现iframe高度自适应
iframe高度自适应使用场景是类似于微博,新闻等点击加载更多这种功能实现,要求iframe的高度能够跟随内容的变化而变化。
父html文件,也就是引用ifram的文件
src="blog/blog.display.html" 引用的文件
id="blog-display" 全局唯一ID
scrolling="no" 去除滚动条
<iframe src="blog/blog.display.html" id="blog-display" scrolling="no" > </iframe>
被引用的Html文件
blog.display.html
<html>
<head>
<script src="blog.display.js"></script>
</head>
<body> <div id="content"></div> <body id="more-btn">加载更多</body> </body> </html>
blog.display.js
注意这里使用的id(blog-display)为父iframe 中的 ID。
就是将body的scrollHeight赋给父iframe 的高度height.
$("#more-btn").click(function(){ IFrameResize();
var text = "<div stype='backgroung-clour:red; height:100px;'></div>"
$("#content").append(text); }) function() IFrameResize(){ //alert(this.document.body.scrollHeight); //弹出当前页面的高度 var obj = parent.document.getElementById("blog-display"); //取得父页面IFrame对象 //alert(obj.height); //弹出父页面中IFrame中设置的高度 obj.height = document.body.scrollHeight; //调整父页面中IFrame的高度为此页面的高度 },
showMore
推荐:《Java常用技术和书籍推荐》
如果,您认为阅读这篇博客让您有些收获,不妨点击一下右下角的推荐按钮。
如果,您希望更容易地发现我的新博客,不妨关注一下。因为,我的写作热情也离不开您的肯定支持。
感谢您的阅读,如果您对我的博客所讲述的内容有兴趣,请继续关注我的后续博客。
本文版权归博客园-冬眠的山谷(https://www.cnblogs.com/lgjlife/)所有,欢迎转载,但未经作者同意必须保留此段声明,且在文章页面明显位置给出。