为什么引导模式中的复选框不起作用?
我使用此代码使其正常工作,但仍有问题
documentBody.on('click','.checkInp',null,function(e) {
var checkbox = $(this).find(":checkbox"),
checked = checkbox.is(":checked");
checkbox.prop("checked", !checked);
});
documentBody.on('click','.checkInp :checkbox',null,function(e) {
$(this).parent('span').trigger('click');
});
当我单击它时,未选中时没有选中出现,或者选中时未选中?但是如果我单击跨度区域,则复选框被标记为选中或取消选中
这是我的小提琴