2015-02-09 69 views
0

如何獲取使用jquery內部的索引1,2,3的值?如何使用jquery獲取li內部的值

<ul class="chosen-choices"> 
<li class="search-choice"> 
<span>American Black Bear</span> 
<a class="search-choice-close" data-option-array-index="1"></a> 
</li> 
<li class="search-choice"> 
<span>Brown Bear</span> 
<a class="search-choice-close" data-option-array-index="3"></a></li> 
<li class="search-choice"> 
<span>Giant Panda</span> 
<a class="search-choice-close" data-option-array-index="4"></a> 
</li> 
<li class="search-field"> 
<input type="text" value="Your Favorite Types of Bear" class="" autocomplete="off" style="width: 25px;" tabindex="16"> 
</li> 
</ul> 
+0

你的意思是'1,3,4' – adeneo 2015-02-09 18:19:09

+0

你忘了張貼你試過沒有工作了jQuery。 – j08691 2015-02-09 18:20:12

回答

4

地圖錨,返回數據

var arr = $.map($('.search-choice a'), function(el) { 
    return $(el).data('option-array-index') 
}); 

FIDDLE