我使用ezMark
jQuery插件作为复选框,但是当我尝试使用以下代码检查复选框时,它无效。
$('#chk').prop('checked', true);
答案 0 :(得分:3)
您必须触发更改事件:
$('#chk').prop('checked', true).change();
答案 1 :(得分:-1)
if(){ // checked true place...
$(this).prop("checked", true);
$(this).parent().addClass('ez-selected');
}else{// checked flase place...
$(this).prop("checked", false);
$(this).parent().removeClass('ez-selected');
}