标签: jquery
确定是否选择了多个HTML选择框中的所有项目的最简单方法是什么?
答案 0 :(得分:17)
您可以查看.length :not() <option>元素的:selected,例如:
.length
:not()
<option>
:selected
var allSelected = $("#selectID option:not(:selected)").length == 0;
答案 1 :(得分:1)
检查未选择的数量是否为零以及是否至少有一个选项
var all = $("select :not(:selected)").length == 0 && $("select options").length > 0;