你正在訪問的內容是外部程式的映像位址,僅用於使用者加速訪問,本站無法保證其可靠性。當前的連結位址(單點即可複製)為 https://greasyfork.org.cn/zh-CN/scripts/449562-nzmsgbox,源站連結 點此以跳轉

NZMsgBox

jQuery消息盒子NZMsgBox

当前为 2022-08-15 提交的版本,查看 最新版本

此脚本不应直接安装。它是供其他脚本使用的外部库,要使用该库请加入元指令 // @require https://update.greasyfork.org.cn/scripts/449562/1081522/NZMsgBox.js

作者
WhiteSevs
版本
0.0.1.20220815014346
创建于
2022-08-15
更新于
2022-08-15
大小
64.4 KB
许可证
暂无

NZMsgBox的解混淆合并脚本,包括css内容,调用方式从$.NZ_MsgBox改为了$jq.NZ_MsgBox

NZMsgBox简介

涉及的js和css资源

修改的调用方式,与原版有一点区别,改一下就行了

//不带图标
$jq.NZ_MsgBox.alert({ 
    title: "yes!成功!"
    , content: "耶耶耶!成功!well done!"
    , type: ""
    , buttons: { 
        confirm: { text: "好的" } 
    } 
});
//不带图标
$jq.NZ_MsgBox.alert({ 
    title: ""
    , content: "耶耶耶!成功!well done!"
    , type: ""
    , buttons: { 
        confirm: {text: "好的"} 
    } 
});
//成功
$jq.NZ_MsgBox.alert({ 
    title: "yes!成功!"
    , content: "耶耶耶!成功!well done!"
    , type: "success"
});
//警告
$jq.NZ_MsgBox.alert({
    title: "Warning!警告!"
    , content: "Warning!警告!well done!"
    , type: "warning"
});
//错误
$jq.NZ_MsgBox.alert({ 
    title: "Error!错误!"
    , content: "Error!错误!"
    , type: "error"
});
//超长内容
$jq.NZ_MsgBox.alert({
    title: "yes!成功!"
    , content: "他自己,自从到城里来,......"
});