判断iframe是否加载完成的完美方法
转载:判断iframe是否加载完成的完美方法
http://goalercn.com/article/article.php?id=4101
一般来说,我们判断 iframe 是否加载完成其实与 判断 JavaScript 文件是否加载完成 采用的方法很类似:
var iframe = document.createElement("iframe");iframe.src = "http://www.goalercn.com";if (iframe.attachEvent){iframe.attachEvent("onload", function(){alert("Local iframe is now loaded.");});} else {iframe.onload = function(){alert("Local iframe is now loaded.");};}document.body.appendChild(iframe);