标签:style blog color strong io cti div log
function iframeAutoFit(iframeObj) { setTimeout(function() { if (!iframeObj) return; iframeObj.height = (iframeObj.Document ? iframeObj.Document.body.scrollHeight : iframeObj.contentDocument.body.offsetHeight); }, 200) }
iframe的document属性和Document属性区别:
document表示iframe所在页面的document。
Document表示iframe内容页的document。让iframe高度随内容页高度自动适应时会用到这个属性
标签:style blog color strong io cti div log
原文地址:http://www.cnblogs.com/rigid/p/3875565.html