覆盖js调用函数 例如:自定义一个alert

  1. window.alert = function(msn){  
  2.   console.log(msn)  
  3. }  
  4. alert("123")  

猜你喜欢

转载自blog.csdn.net/educast/article/details/80001333