亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

Iframe 自動(dòng)適應(yīng)頁面的高度示例代碼

 更新時(shí)間:2014年02月26日 15:47:54   作者:  
這篇文章主要介紹了Iframe如何自動(dòng)適應(yīng)頁面的高度,需要的朋友可以參考下

復(fù)制代碼 代碼如下:

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

復(fù)制代碼 代碼如下:

<iframe id="IframeId_help" scrolling="no" onload="Javascript:SetCwinHeight(this)"
width="670px" style="border: 0px" frameborder="0"></iframe>

相關(guān)文章

最新評(píng)論