码迷,mamicode.com
首页 > Web开发 > 详细

去除弹窗自带url提示

时间:2018-06-13 14:54:41      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:class   create   IV   attribute   element   弹窗   splay   rem   none   

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);
};

 

去除弹窗自带url提示

标签:class   create   IV   attribute   element   弹窗   splay   rem   none   

原文地址:https://www.cnblogs.com/echolife/p/9177131.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!