对不起,
是否可以在Bootstrap Toggle的message
字段中显示BootstrapDialog?
例如:
BootstrapDialog.show({
title: 'Information',
message: '<input class="toggleExample" type="checkbox" data-toggle="toggle">'
});
另外,我尝试在BootstrapDialog之前和BootstrapDialog之后初始化$('.toggleExample')
,但它们都没有工作。
答案 0 :(得分:1)
BootStrap dialog
插件构建在bootstrap 3库上,同样Bootstrap dialog
构建在bootstrap 2库上。
所以这两个插件都可以使用不同版本的核心库,因此你无法组合这两个插件的功能。
欲了解更多信息,请参阅插件官方网站:
答案 1 :(得分:0)
只需根据需要尝试此代码,这将弹出复选框和按钮。
BootstrapDialog.show({
message: function (dialogItself) {
var $form = $('<form></form>');
var $titleDrop = $('<input type="checkbox" />');
dialogItself.setData('field-title-drop', $titleDrop); // Put it in dialog data's container then you can get it easier by using dialog.getData() later.
$form.append('<label>Click Here</label>').append($titleDrop);
return $form;
},
buttons: [{
label: 'OK.',
action: function (dialogItself) {
alert(dialogItself.getData('field-title-drop').val());
}
}]
});