vuvivian's blog

越努力,越幸运.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
var iframe = document.createElement("iframe");
iframe.src = "http://www.cnblogs.com/lifeil/";

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);
本文最后更新于 天前,文中所描述的信息可能已发生改变