我在 div 元素中有一个复选框。每当我单击按钮时,我都想将复选框标记为已选中。. div 元素标记如下
<div class ="test123" style ="width:90px;">
<input id = "chk1" type = "checkbox" value="on"/>
</div>
我正在做这样的事情,但它不适合我
$(".test123 ").find("input:checked").each(function() {
//code to check the checkbox
});
请建议..
导航。