当前位置: 首页 > 工具软件 > jQuery WeUI > 使用案例 >

Jquery-weui 弹窗

毛越
2023-12-01
// $.modal、$.confirm 设置弹窗按钮文字
$.modal.prototype.defaults.buttonOK = '显示';
$.modal.prototype.defaults.buttonCancel = '隐藏';

// 源码
defaults = $.modal.prototype.defaults = {
    title: "提示",
    text: undefined,
    buttonOK: "确定",
    buttonCancel: "取消",
    buttons: [{
        text: "确定",
        className: "primary"
    }],
    autoClose: true //点击按钮自动关闭对话框,如果你不希望点击按钮就关闭对话框,可以把这个设置为false
};

// $.toast 设置弹窗时间
$.toast.prototype.defaults.duration = 1000;

// 源码
var toastDefaults = $.toast.prototype.defaults = {
    duration: 2500
}

 类似资料: