GB-dialog.js

DEMO

普通

gbDialog.show({
    title: '温馨提示',
    content: '今天过完就是明天'
});

定制按钮

gbDialog.show({
    title: '温馨提示',
    content: '今天过完就是明天',
    btnConfirm: 'OK',
    btnCancel: false
});

移除标题

gbDialog.show({
    content: '今天过完就是明天',
    btnCancel: false
});

显示关闭按钮

gbDialog.show({
    title: '温馨提示',
    content: '今天过完就是明天',
    btnClose: true
});

回调

gbDialog.show({
    title: '温馨提示',
    content: '今天过完就是明天',
    confirm: function() {
        alert('确定回调');
    },
    cancel: function() {
        alert('取消回调');
    }
});

显示已有 dialog

gbDialog.show({
    id: 'dialog1',
    confirm: function() {
        alert('再考虑一下?');
    }
});

登陆校验

gbDialog.show({
    id: 'dialogLogin',
    verify: function() {
        if (!email.value) {
            alert('请输入ID/Email');
            return false;
        }
        return true;
    },
    confirm: function() {
        alert('Ajax登陆');
    }
});

Fork me on Github

温馨提示

我们选择在居家安全用电的时候尽量不要湿着手去按开关和插座,特别是天干物燥的时候我们尽量选择右手操作和电有关的地方,大家一定要严格注意,规范自己和家人的用电行为,不要留下任何的安全隐患,否则后悔终生!

亲,请先登陆

X