标签:
//重写alert
window.alert = function(){};
//调用找回alert
function getAlert(){
var f = document.createElement("iframe");
f.style.cssText = "border:0;width:0;height:0;display:none";
document.body.appendChild(f);
var d = f.contentWindow.document;
d.write("<script type=\"text/javascript\">window.parent.alert = alert;<\/script>");
d.close();
}
标签:
原文地址:http://www.cnblogs.com/victor-vt/p/5580176.html