去除移动端(苹果手机)alert/confirm的网址(url)

资源贴:https://blog.csdn.net/wlangduhua/article/details/81839384

说明:开发iPhone页面时,弹窗自动会带上url链接

解决办法,修改弹窗弹出内容

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

猜你喜欢

转载自blog.csdn.net/wrongyao/article/details/82426226