假设我有以下 HTML:
<form id="myform">
<input type='checkbox' name='foo[]'/> Check 1<br/>
<input type='checkbox' name='foo[]' checked='true'/> Check 2<br/>
<input type='checkbox' name='foo[]'/> Check 3<br/>
</form>
现在,如何选择名称为 'foo[]' 的选中输入字段?
这是我的尝试,但它不起作用:
$("#myform input[name='foo']:checked:enabled");