iframe自適應高度(2)

<scripttype="text/javascript">
function SetCwinHeight() { 
var iframeid = document.getElementById("center"); //iframe id 
iframeid.height = "0px";//先給一個夠小的初值,然後再長高. 
if (document.getElementById) { 
 if (iframeid && !window.opera) { 
   if (iframeid.contentDocument && iframeid.contentDocument.body.offsetHeight) { 
iframeid.height = iframeid.contentDocument.body.offsetHeight; 
} else if (iframeid.Document && iframeid.Document.body.scrollHeight) { 
iframeid.height = iframeid.Document.body.scrollHeight; 
}
 }
}       
</script>
    
<iframeid="center"name="center"src="Center.jsp"
scrolling="no"frameborder="no"allowtransparency="yes"border="0"marginwidth="0"marginheight="0"
οnlοad="Javascript:SetCwinHeight()"
width="100%"></iframe>
來源:http://www.xymyeah.com/?p=40
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章