正文 872字数 9,683,774阅读

自定义alert弹框,title不显示域名
去掉网址
弹窗 弹框 alert ios 苹果 alert弹出对话框英文域名
苹果手机ios弹出窗自定义去掉标题网址文字
<script> 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(name){ var iframe = document.createElement("IFRAME"); iframe.style.display="none"; iframe.setAttribute("src", 'data:text/plain,'); document.documentElement.appendChild(iframe); var result = window.frames[0].window.confirm(name); iframe.parentNode.removeChild(iframe); return result; } </script>
Run code
Cut to clipboard

    UC手机中的IE浏览器有问题,还是会显示网址,建议使用以下第一条置顶回复插件↓↓↓