美文网首页
(生活小废招)去除移动端(苹果手机)alert/confirm的

(生活小废招)去除移动端(苹果手机)alert/confirm的

作者: DA3D | 来源:发表于2021-09-18 17:23 被阅读0次

window.alert = function(name){

    var iframe = document.createElement("IFRAME");

    iframe.style.display="none";

    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的

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