前台页面 弹窗去除域名显示

算是js的优化吧  忘记在哪儿看到的了 找不到原贴链接了 只能仅粘贴代码了

window.alert = function alertw(name) {  

    var iframe = document.createElement("IFRAME");  
    iframe.style.display = "none";  
    iframe.setAttribute("src", 'data:text/plain,');  
    document.documentElement.appendChild(iframe);  
    window.frames[0].window.alert(name);  
    iframe.parentNode.removeChild(iframe);  
}  

你可能感兴趣的:(Web)