使用jquery从循环中获取所选div的div id

时间:2015-11-28 12:05:28

标签: jquery for-loop

嗨,我有一个看起来像的表格。 (我使用过羊形式克隆,但我需要的是跟随的东西)。

   <div id="container">
     <% for i in loop %>
       //ex. 3 times loop could be test-1, test-2, test-3
       <div id="test-[i]">  
         "some content"
      </div>
     <% end loop %>
  </div>

1 个答案:

答案 0 :(得分:0)

我认为这就是你要找的东西:

$('#container').children().each(function(){
    var id = $(this).prop('id');
});