`
柴秉承
  • 浏览: 85527 次
  • 性别: Icon_minigender_1
  • 来自: 厦门
社区版块
存档分类
最新评论

iframe高度自适应

阅读更多

 

 

function SetWinHeight(obj) {

var win = obj;

if(document.getElementById) {

if(win && !window.opera) {

if(win.contentDocument && win.contentDocument.body.offsetHeight) {

win.height = win.contentDocument.body.offsetHeight;

} else if(win.Document && win.Document.body.scrollHeight)

win.height = win.Document.body.scrollHeight;

}

}

}

 

iframe引用的方式

<iframe onload="javascript:SetWinHeight(this)" scrolling="no" 

name="contentFrame" id="contentFrame" border="none" 

frameborder="no" src="test.html"

width="100%"/>

 

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics