Greasy Fork is available in English.

NZMsgBox

jQuery消息盒子NZMsgBox

이 스크립트는 직접 설치해서 쓰는 게 아닙니다. 다른 스크립트가 메타 명령 // @require https://update.greasyfork.org/scripts/449562/1360568/NZMsgBox.js(으)로 포함하여 쓰는 라이브러리입니다.

질문, 리뷰하거나, 이 스크립트를 신고하세요.
개발자
WhiteSevs
버전
0.0.1.20230601031422
생성
2022-08-15
갱신
2023-06-01
라이선스
없음

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

NZMsgBox简介

涉及的js和css资源

部分调用方式

//不带图标
$.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: "他自己,自从到城里来,......"
});