每天學習一點點 編程PDF電子書、視頻教程免費下載:
http://www.shitanlife.com/code
在使用iframe時,iframe背景為白塊,刷新時也會閃過白塊。如果刷新時間長,就會一直出現白塊,讓人很煩惱,通過網上搜資料,測試最終解決方法如下所示,注意主要針對IE瀏覽器測試。
一、iframe 設置不可見 style=" visibility:hidden;"
<iframe id="iframe" style=" visibility:hidden;" src="xx.action" width="100%" height="100%" frameborder="no" border="0" marginwidth="0" marginheight="0" scrolling="no" ></iframe>
二、當iframe加載完成后去掉visibility
function isLoad() {
var iframe = document.getElementById("iframe");
if (iframe.attachEvent) {
iframe.attachEvent("onload", function () {
iframe.style.visibility = "";
});
} else {
iframe.onload = function () {
iframe.style.visibility = "";
};
}
}
這樣就能完美的解決了。如果大家還有好的方法,請告知一二,在此感謝!

