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);
};

 

相关文章:

  • 2022-12-23
  • 2021-09-01
  • 2021-06-19
  • 2022-12-23
  • 2021-06-04
  • 2022-12-23
  • 2021-07-12
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-10
  • 2021-10-31
  • 2021-08-01
  • 2021-06-09
相关资源
相似解决方案