$('.inputCheck').unbind().on('click', function() {
if ($('#exampleInputPassword').prop('disabled'))
$('#exampleInputPassword').prop('disabled', false);
else
$('#exampleInputPassword').prop('disabled', true);
});
BootstrapDialog.show({
title: 'Example',
message: '<input type="checkbox" class="inputCheck"/>Check <input type="password" class="form-control" id="exampleInputPassword" placeholder="Password">',
buttons: [{
label: 'Close',
action: function(dialog) {
dialog.close();
}
}]
});
如何应用 jQuery 访问 BootstrapDialog 中的元素?上面的代码应该像这样,如果$('.inputCheck')
被点击,$('#exampleInputPassword')
应该根据它的状态被禁用或启用。