zwei1121

博客园 首页 新随笔 联系 订阅 管理
var iframe = document.createElement("iframe");
iframe.src = "http://www.planabc.net";

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);
posted on 2015-06-29 11:30  zwei  阅读(560)  评论(0编辑  收藏  举报