jQuery消息盒子NZMsgBox
此腳本不應該直接安裝,它是一個供其他腳本使用的函式庫。欲使用本函式庫,請在腳本 metadata 寫上: // @require https://update.cn-greasyfork.org/scripts/449562/1413239/NZMsgBox.js

//不带图标
$.NZ_MsgBox.alert({
title: "yes!成功!"
, content: "耶耶耶!成功!well done!"
, type: ""
, buttons: {
reverse: true, // 如果是confirm,底部按钮置反
autoClose: false, // 禁止自动关闭
confirm: { text: "好的" }
}
});
//不带图标
$.NZ_MsgBox.alert({
title: ""
, content: "耶耶耶!成功!well done!"
, type: ""
, buttons: {
confirm: {text: "好的"}
}
});
//成功
$.NZ_MsgBox.alert({
title: "yes!成功!"
, content: "耶耶耶!成功!well done!"
, type: "success"
});
//警告
$.NZ_MsgBox.alert({
title: "Warning!警告!"
, content: "Warning!警告!well done!"
, type: "warning"
});
//错误
$.NZ_MsgBox.alert({
title: "Error!错误!"
, content: "Error!错误!"
, type: "error"
});
//超长内容
$.NZ_MsgBox.alert({
title: "yes!成功!"
, content: "他自己,自从到城里来,......"
});