2009年9月7日 星期一

讓iframe隨連結頁面內容高度自動調整內容

1.先在要使用iframe連結的頁面寫好iframe語法,id命名為frameid,注意scrolling不可以設定為no:

〈iframe src="test.htm" id="frameid" frameborder="0">

2.在要被連結的內容頁內,寫入以下語法:

〈head>
〈script>
function resize(){
parent.document.getElementById("frameid").height=document.body.scrollHeight;
}
〈/script>
〈/head>

〈body onload="resize();">

參考資料來源:http://blog.xuite.net/jon6773/blog/17844864

沒有留言: