码迷,mamicode.com
首页 > 其他好文 > 详细

[转]iframe自适应宽度高度

时间:2015-11-05 10:40:22      阅读:98      评论:0      收藏:0      [点我收藏+]

标签:

<iframe id="iframe" onLoad="AutoFit();" frameborder="0" scrolling="no" src="http://www.cnblogs.com">
</iframe>

JQuery代码:

function AutoFit() {
    var ifm = document.getElementById("iframe");
    var subWeb = document.frames ? document.frames["article_frame"].document : ifm.contentDocument;
    if (ifm != null && subWeb != null) {
    $("#iframe").css({ "width": subWeb.body.scrollWidth + "px" });
    $("#iframe").css({ "height": subWeb.body.scrollHeight + "px" }); 
  }
}

 

[转]iframe自适应宽度高度

标签:

原文地址:http://www.cnblogs.com/tongyinaocan/p/4938414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!