码迷,mamicode.com
首页 > 其他好文 > 详细

重写系统的弹框

时间:2017-08-29 18:00:14      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:rem   end   nbsp   confirm   div   name   display   sage   系统   

 //调用系统的弹框,不显示地址

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

window.confirm = function (message) {
    var iframe = document.createElement("IFRAME");
    iframe.style.display = "none";
    iframe.setAttribute("src", ‘data:text/plain,‘);
    document.documentElement.appendChild(iframe);
    var alertFrame = window.frames[0];
    var result = alertFrame.window.confirm(message);
    iframe.parentNode.removeChild(iframe);
    return result;
};

重写系统的弹框

标签:rem   end   nbsp   confirm   div   name   display   sage   系统   

原文地址:http://www.cnblogs.com/ch-zaizai/p/7449295.html

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