Greasy Fork is available in English.

NZMsgBox

jQuery消息盒子NZMsgBox

Fra 15.08.2022. Se den seneste versjonen.

Dette scriptet burde ikke installeres direkte. Det er et bibliotek for andre script å inkludere med det nye metadirektivet // @require https://update.greasyfork.org/scripts/449562/1081718/NZMsgBox.js

Forfatter
WhiteSevs
Versjon
0.0.1.20220815133029
Lagd
15.08.2022
Oppdatert
15.08.2022
Lisens
I/T

NZMsgBox的解混淆并且合并了两个涉及的js,包括css内容

NZMsgBox简介

涉及的js和css资源

部分调用方式

//不带图标
$.NZ_MsgBox.alert({ 
    title: "yes!成功!"
    , content: "耶耶耶!成功!well done!"
    , type: ""
    , buttons: { 
        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: "他自己,自从到城里来,......"
});