系统默认alert弹出框域名title问题

来源:互联网 发布:c#9语言高级编程 pdf 编辑:程序博客网 时间:2024/06/08 02:40

最近在开发Hybrid APP时发现用系统默认的alert弹出框总会带有域名,用户体验就比较不好了。想了一种办法来解决就是覆盖alert的方法。

(function(){
       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);
}
  })();
 alert('试一试');

完美解决!

0 0
原创粉丝点击