javascript – 在不重写多行的情况下使警报更漂亮

前端之家收集整理的这篇文章主要介绍了javascript – 在不重写多行的情况下使警报更漂亮前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我知道有很多很好的插件用于漂亮的警报框,但是我已经发出了很多警报,所以我想询问是否可以使这些警报更漂亮而不重写代码中的所有警报函数调用并将其替换为其他函数

解决方法

你可以劫持默认的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);
};

演示:http://jsfiddle.net/mattball/exgBs/

原文链接:/js/159298.html

猜你在找的JavaScript相关文章