解决方法
你可以劫持默认的window.alert函数:
window.__oldAlert__ = window.alert; window.alert = function () { // your custom alert code here };
演示:http://jsfiddle.net/mattball/jMEha/
编辑
what do I need to write to change it to this plugin? 07001
您的页面将需要jQuery,以及Apprise JS和CSS文件.
window.__oldAlert__ = window.alert; window.alert = function () { apprise.apply(this,arguments); };