[转]iframe自适应宽度高度

<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" }); 
  }
}

 

posted @ 2015-11-05 09:25  卖蜂蜜的码农  阅读(187)  评论(0编辑  收藏  举报