关于事件点击问题

时间:2017-12-07 05:51:06

标签: javascript bootbox

我正在为我的大学项目使用Bootstrap 4 Beta和JavaScript,我正在制作一些日历事件功能。我使用Bootbox.js进行弹出式播放,我的问题是当我点击日历活动时会显示警告,但此警报无法自定义,我想知道如何添加<div> <button> {{ 1}}和text对于此提醒,请查看我的附件图片,您可以理解

这是我的剧本,

活动

etc

点击

 dp.events.list = [{
      start: "2017-12-20",
      end: "2017-12-28",
      id: "1",
         resource: "A",
      text: "Mahesh",
      backColor: "#70CB85",


    },

enter image description here

2 个答案:

答案 0 :(得分:2)

你可以轻松地将html置于警戒状态。

dashboardStats

请参阅this link了解更多警报选项

答案 1 :(得分:2)

documentation开始:

  

警报回调不应提供参数;它将被忽略

如果您想传递按钮,可以使用confirm

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) {
        // ...
    }
});

或使用Dialog:

bootbox.dialog({ message: '<div class="text-center"><i class="fa fa-spin fa-spinner"></i> Loading...</div>' })