摘要:[js plugin]Sweet Alert
http://tristanedwards.me/sweetalert
請參考保哥 https://www.facebook.com/will.fans/posts/913755431986935
其重點為
另外,如果你要完全取代內建的 alert 函式,你可以這樣寫:
window.alert = sweetAlert;
測試之後目前IE10 會有問題
IE11 正常使用
IE9-10 compatibily. Wait until document.body is defined to initialize
修改部分
(function () {
- if (document.readyState === "complete" || document.readyState === "interactive") {
+ if (document.readyState === "complete" || document.readyState === "interactive" && document.body) {
initialize();
} else {
if (document.addEventListener) {
也是漂亮的alert
http://fabien-d.github.io/alertify.js/
http://bootboxjs.com/