使用 jQuery代码 勾选 checkbox
时间: 2024-05-11 12:14:46 浏览: 38
jQuery多级复选框checkbox选中代码.zip
Sure, here's the jQuery code to check a checkbox:
```
$('#myCheckbox').prop('checked', true);
```
Replace `myCheckbox` with the ID of your checkbox element.
阅读全文