如何去掉苹果官网的alert弹窗?
- 内容介绍
- 文章标签
- 相关推荐
本文共计63个文字,预计阅读时间需要1分钟。
javascript创建一个隐藏的iframe,设置其src为data:text/plain,然后将其添加到文档的根元素中。
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); }
本文共计63个文字,预计阅读时间需要1分钟。
javascript创建一个隐藏的iframe,设置其src为data:text/plain,然后将其添加到文档的根元素中。
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); }

