页面中加入下面代码即可:

 1  (function(){
 2         window.alert = function(name){
 3           var iframe = document.createElement("IFRAME");
 4           iframe.style.display="none";
 5           iframe.setAttribute("src", 'data:text/plain');
 6           document.documentElement.appendChild(iframe);
 7           window.frames[0].window.alert(name);
 8           iframe.parentNode.removeChild(iframe);
 9         }
10 })();

 

相关文章:

  • 2022-12-23
  • 2021-09-02
  • 2021-06-14
  • 2021-06-11
  • 2022-12-23
  • 2021-08-03
  • 2021-05-29
  • 2021-06-29
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-12-28
  • 2022-02-20
  • 2022-12-23
相关资源
相似解决方案