selectedIndex选择器(检查选择数组是否具有selectedIndex> 0)

时间:2013-05-24 16:22:24

标签: jquery select jquery-selectors selectedindex

我不想在$.each()元素数组上写一个临时布尔值<select>,而是查找一个prop('selectedIndex') > 0,我想做类似的事情:

$('select[id^="idPrefixForTheArrayOfSelects-"][selectedIndex="0"]').length == 0

但它不起作用。

是否可以按值,selectedIndex等进行选择?

1 个答案:

答案 0 :(得分:5)

你可以这样做 -

$('select[id^="idPrefixForTheArrayOfSelects-"]').filter(function(){
 return this.selectedIndex === 0;
}).length == 0