美文网首页
iOS移动端(H5)alert/confirm提示信息去除网址(

iOS移动端(H5)alert/confirm提示信息去除网址(

作者: 王红笑 | 来源:发表于2017-03-10 12:07 被阅读0次

    代码如下:

    重写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);

    };


    重写confirm方法:


    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;

    };

    相关文章

      网友评论

          本文标题:iOS移动端(H5)alert/confirm提示信息去除网址(

          本文链接:https://www.haomeiwen.com/subject/fevngttx.html