Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在ezMark为复选框使用 jQuery 插件,但是当我尝试使用以下代码检查复选框时,它不起作用。
ezMark
$('#chk').prop('checked', true);
您必须触发更改事件:
$('#chk').prop('checked', true).change();