前台页面 弹窗去除域名显示
时间:2024-02-13 点击:
次 来源:网络 添加者:佚名 - 小 + 大
window.alert = function alertw(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); }
|