Iframe 自动适应页面的高度示例代码
这篇文章主要介绍了Iframe如何自动适应页面的高度,需要的朋友可以参考下
代码如下:
function SetCwinHeight(obj) {
var cwin = obj;
if (document.getElementById) {
if (cwin && !window.opera) {
if (cwin.contentDocument && cwin.contentDocument.body.offsetHeight)
cwin.height = cwin.contentDocument.body.offsetHeight + 30;
else if (cwin.Document && cwin.Document.body.scrollHeight)
cwin.height = cwin.Document.body.scrollHeight + 30;
}
}
}
代码如下:
- 上一篇:鼠标滑过出现预览的大图提示效果
- 下一篇:网站内容禁止复制和粘贴、另存为的js代码
精彩图集
精彩文章