我的 DOM 中有超过 53 个类似select
的部分,我需要计算用户选择了多少特定选项。
我的 DOM 的一个例子是这样的:
<select name="attendance" class="dd" id="20130101">
<option>p</option>
<option>a</option>
<option>s</option>
</select>
<select name="attendance" class="dd" id="20130102">
<option>p</option>
<option>a</option>
<option>s</option>
</select>
... x 51 more times!
例如,我想做的是返回用户选择“a”的选项的数量(计数)。我试过$('.dd option:selected').length
但是它返回所有选择部分的总数(53)。
谢谢你的帮助!