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

本文提供了一种解决iPhone页面中弹窗自动携带URL链接的问题的方法。通过重写window.alert和window.confirm函数,并利用IFRAME元素来避免弹窗显示URL,确保了用户体验的一致性和友好性。

资源贴:https://blog.youkuaiyun.com/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;
}

 

评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值