我不想在$.each()
元素数组上写一个临时布尔值<select>
,而是查找一个prop('selectedIndex') > 0
,我想做类似的事情:
$('select[id^="idPrefixForTheArrayOfSelects-"][selectedIndex="0"]').length == 0
但它不起作用。
是否可以按值,selectedIndex等进行选择?
答案 0 :(得分:5)
你可以这样做 -
$('select[id^="idPrefixForTheArrayOfSelects-"]').filter(function(){
return this.selectedIndex === 0;
}).length == 0