我想要动态使用几个div。
<div class="parent-19" id="123"> </div>
<div class="parent-19" id="124"> </div>
<div class="parent-19" id="125"> </div>
现在,我想迭代它们,如:
$('.parent-19').each(function () {
//Want to load the id into a variable
});
如何将id值(例如123)加载到变量?
var Id = $(this).???
答案 0 :(得分:3)
您不需要使用jQuery对象包装this
来获取id。只需:
var id = this.id;
获取一组id:
var ids = $('.parent-19').map(function () {
return this.id;
}).get();