我有以下HTML:
<div class="house">...</div>
但是在我的代码中,我动态插入DIV ID,使代码看起来像这样:
<div class="house" id="id_1">...</div>
问题:如何通过使用JQuery了解CLASS来获取DIV ID?我尝试了类似下面的内容,但它不起作用。
$('.house').getID();
答案 0 :(得分:9)
$('div.house')
.each(function(index) {
alert( 'id for this div.class #'+index+': '+$(this).attr('id') );
});
答案 1 :(得分:2)
答案 2 :(得分:0)
我相信
$('.house').attr("id");
应该有效。我没试过它。