2009年8月11日 星期二

iframe 隨目標頁面調整大小

在要使用iframe語法頁面裡加入下列語法

  
〈body〉   
 〈iframe src="source.htm" id="frameid" frameborder="0"〉〈/iframe〉
〈/body〉


再來,就是放在iframe連結的頁面htm,加入下列語法[firefox相容]

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

沒有留言:

張貼留言