我已经制作了三个带有id的html表是“table1”,“table2”和“table3”。我能够得到第一张桌子的id。如何获取所有三个表的Id,然后使用JQuery在输出中显示这些Id。 例如,表Id是:“table1”,然后是“table2”,然后是“table3”
答案 0 :(得分:6)
$('table').each(function(){
alert(this.id);
});
答案 1 :(得分:0)
我想你在其他一些属性上使用选择器,因为我错过了获取你已经知道的ID的重点。 顺便说一句,您可以使用each()循环选定的集合并获取Element的ID。 例如:
$('table').each(function() {
alert( $(this).attr('id') );
}