去除弹窗自带url提示
Posted echolife
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了去除弹窗自带url提示相关的知识,希望对你有一定的参考价值。
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); };
以上是关于去除弹窗自带url提示的主要内容,如果未能解决你的问题,请参考以下文章