重写原生浏览器方法实现新功能

(function(){
  var oldAlert = window.alert,count = 0;
  window.alert = function(str){
	count++;
	oldAlert(str+" show "+count);
  }
})()
alert("hello wold");

  重写浏览器的alert方法让它可以记录弹窗次数。

posted @ 2015-10-13 13:55  goodpan  阅读(284)  评论(0编辑  收藏  举报