alert 去除域名

2021-04-19  本文已影响0人  逸笛
(function(){
       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);
}
  })();
 alert('想弹啥就弹啥');
上一篇 下一篇

猜你喜欢

热点阅读