嗨,我有一个看起来像的表格。 (我使用过羊形式克隆,但我需要的是跟随的东西)。
<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>
答案 0 :(得分:0)
我认为这就是你要找的东西:
$('#container').children().each(function(){
var id = $(this).prop('id');
});