DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> iframe自適應寬度、高度 ie6 7 8,firefox 3.86下測試通過
iframe自適應寬度、高度 ie6 7 8,firefox 3.86下測試通過
編輯:關於JavaScript     
廢話不多說,貼上代碼,也算是自己的一個代碼存儲。
復制代碼 代碼如下:
var temp_iframe
var content = document.getElementById('right'); //id為 right的DOM容器中,進行創建iframe和寬高自適應
var c = 0;
function append(filename)
{
var the_iframe = "helpfile" + c;
temp_iframe = document.createElement("iframe");
temp_iframe.src = filename;
temp_iframe.scrolling = "no";
temp_iframe.setAttribute("frameborder", "0");
temp_iframe.id = the_iframe;
temp_iframe.name = the_iframe;
scroll(0, 0);
content.innerHTML = "";
content.appendChild(temp_iframe);
if (document.all)
{
temp_iframe.attachEvent('onload', function()
{
temp_iframe.setAttribute("width", window.frames[the_iframe].document.body.scrollWidth); //自適應寬
temp_iframe.setAttribute("height", window.frames[the_iframe].document.body.scrollHeight); //自適應高
});
}
else
{
temp_iframe.addEventListener('load', function()
{
temp_iframe.setAttribute("width", window.frames[the_iframe].document.body.scrollWidth);
temp_iframe.setAttribute("height", window.frames[the_iframe].document.body.scrollHeight);
}, false);
}
c++;
return false;
}
/*調用方法
把此腳本另存為腳本文件:iframe.js,然後再前台頁面中調用:
------------------------------------------------------------------------
<a href="index.html" onclick="return append('xxxx.html')" class="li1">
<div id="right"></div>
<script type="text/javascript" src="iframe.js"></script>
------------------------------------------------------------------------
或者 去掉腳本中最後的 return false,前台:
------------------------------------------------------------------------
<a href="javascript:append('favorite/Favorites.html')" class="li1">
<div id="right"></div>
<script type="text/javascript" src="iframe.js"></script>
------------------------------------------------------------------------
*/

嘿嘿,其中,最後設置自適應寬高的,其實可以提出來成為一個函數來調用。
這個我沒去那麼做,有看到文章的朋友,可自行封裝。

其中,還有一些不太方便的,比如我每次建立的iframe必須不同的名字和id,即時刪除原來已經創建的也不行……
還是希望大家多多指教吧。
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved