最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Get ID from elements and put them inside an array - Stack Overflow

programmeradmin1浏览0评论

I would like know how can i get the values of 3 div with the same class and put it inside an array.

example div

<div class="selected" id="1"></div>
<div class="selected" id="2"></div>
<div class="selected" id="3"></div>

I would like have this result array(1,2,3), I saw the function each of jquery but i don't think is the right way, any idea?

Thnak you for the answer. But if i want get the id when i click a children how can i do that? example

   <div class="selected" id="1">
      <li>Click</li>
   </div>
    <div class="selected" id="2">
       <li>Click</li>
    </div>
    <div class="selected" id="3">
       <li>Click</li>
    </div>

I would like know how can i get the values of 3 div with the same class and put it inside an array.

example div

<div class="selected" id="1"></div>
<div class="selected" id="2"></div>
<div class="selected" id="3"></div>

I would like have this result array(1,2,3), I saw the function each of jquery but i don't think is the right way, any idea?

Thnak you for the answer. But if i want get the id when i click a children how can i do that? example

   <div class="selected" id="1">
      <li>Click</li>
   </div>
    <div class="selected" id="2">
       <li>Click</li>
    </div>
    <div class="selected" id="3">
       <li>Click</li>
    </div>
Share Improve this question edited Oct 4, 2013 at 13:33 fabrizio asked Oct 4, 2013 at 13:07 fabriziofabrizio 2591 gold badge8 silver badges23 bronze badges 0
Add a ment  | 

3 Answers 3

Reset to default 8

That looks like you want the ID of each div in an array, in any case:

var divArr = $(".selected").map(function() {
    return this.id;
}).get();

You can use .map:

var arr = $(".selected").map(function() {
    return this.id
}).get();

You can simply use as such

var ary = new Array();
$("div.selected").each(function(){
  ary.push(this.id);
});
发布评论

评论列表(0)

  1. 暂无评论