美文网首页
去除alert ,confirm上的url

去除alert ,confirm上的url

作者: JsLin_ | 来源:发表于2019-01-10 20:40 被阅读0次
    
        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;
            };
    
    

    相关文章

      网友评论

          本文标题:去除alert ,confirm上的url

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