您现在的位置是:首页 > 前端 > 网站首页前端
简介
怎样去掉alert自带提示网址的信息
怎样去掉alert自带提示网址的信息
alert弹出网址 解决办法
以下是代码 直接 加上下面的js 就可以 当有alert方法执行的时候 就会自动调用
window.alert = function(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);
}
其他办法找一个前端的弹出框插件比如layer或者其他的