美文网首页
bootbox控件

bootbox控件

作者: xuyouxin1 | 来源:发表于2017-12-01 14:54 被阅读0次

    警告:
    bootbox.alert("xxx");

    确认:
    bootbox.confirm({
    message: "This is a confirm with custom button text and color! Do you like it?",
    buttons: {
    confirm: {
    label: 'Yes',
    className: 'btn-success'
    },
    cancel: {
    label: 'No',
    className: 'btn-danger'
    }
    },
    callback: function (result) {
    console.log('This was logged in the callback: ' + result);
    }
    });

    输入某个信息:
    bootbox.prompt("输入姓名:", function(result) {
    alert(result);
    });

    更多用法:http://bootboxjs.com/examples.html#bb-confirm-dialog

    相关文章

      网友评论

          本文标题:bootbox控件

          本文链接:https://www.haomeiwen.com/subject/zuhwbxtx.html