为什么下面的代码不起作用。我阻止对事件的默认操作。然后我还是想选中该框。
html
<input type="checkbox" class="checkbox" />
javsacript
$('.checkbox').click( function(e) {
e.preventDefault();
// some logic happens... now i may decide to check the box (in this case we want to check it for testing)
$('.checkbox').prop('checked',true);
});
您会认为单击复选框仍会选中该框..但事实并非如此。检查小提琴以了解我的意思。
我也尝试过使用该attr
功能,但没有任何运气。