劳驾,

是否可以在Bootstrap Togglemessage字段中显示BootstrapDialog

例如:

BootstrapDialog.show({
  title: 'Information',
  message: '<input class="toggleExample" type="checkbox" data-toggle="toggle">'
});


另外,我尝试在BootstrapDialog之前和BootstrapDialog之后初始化$('.toggleExample'),但是它们都不起作用。

最佳答案

BootStrap dialog插件也是基于bootstrap 3库构建的Bootstrap dialog插件也是基于bootstrap 2库构建的。

因此这两个插件都可以与内核库的不同版本一起使用,因此您无法将两个插件的功能组合在一起。

有关更多信息,请参阅插件官方网站:


引导对话框-https://github.com/nakupanda/bootstrap3-dialog
Bootstrap Toggle(转到页面末尾以了解版本)-http://www.bootstraptoggle.com/

09-12 13:59