例如我有以下内容:
<div class="both">
<textarea data-id="1" name="t1">Value 1</textarea>
<input type="checkbox" value="checkbox1" checked="checked" name="c1">
<input type="checkbox" value="checkbox1-2" name="c1">
<input type="checkbox" value="checkbox1-3" name="c1">
</div>
<div class="both">
<textarea data-id="2" name="t2">Value 2</textarea>
<input type="checkbox" value="checkbox2-1" name="c2">
<input type="checkbox" value="checkbox2" checked="checked" name="c2">
<input type="checkbox" value="checkbox2-3" name="c2">
</div>
<div class="both">
<textarea data-id="3" name="t3">Value 3</textarea>
<input type="checkbox" value="checkbox3-1" name="c3">
<input type="checkbox" value="checkbox3-2" name="c3">
<input type="checkbox" value="checkbox3-3" checked="checked" name="c3">
</div>
我想找出两者的第一个 div 元素中复选框的数量。
愚蠢的问题,但我是新来的..
谢谢