我想知道是否有一种更有效的方法来计算用户的选择:
这是页面上多次出现的选择下拉菜单:
<select class="span2 jquery-countable" name="category[7]">
<option></option>
<option value="1">1. vote</option>
<option value="2">2. vote</option>
<option value="3">3. vote</option>
<option value="4">4. vote</option>
</select>
这是我的 js 计算选择:
$(document).ready(function () {
$('#selected-count').html('You choose ' + getCount() + ' entries');
function getCount() {
prio1 = $('.jquery-countable option:selected[value="1"]').length;
prio2 = $('.jquery-countable option:selected[value="2"]').length;
prio3 = $('.jquery-countable option:selected[value="3"]').length;
prio4 = $('.jquery-countable option:selected[value="4"]').length;
return prio1 + prio2 + prio3 + prio4;
}
$('.jquery-countable').change(function () {
$('.jquery-countable option:selected').each(function () {
$('#selected-count').html('You choose ' + getCount() + ' entries');
})
})
});
我的目标是计算用户所做的所有非空选择?!
有没有更有效的方法?
谢谢!