使用jQuery,如何找出与给定类关联的所有ID?

有帮助吗?

最佳答案

循环遍历具有指定类的所有元素,并将其ID存储在数组中。见jQuery .each

var ids = [];
$('.class').each(function() {
    if($(this).attr('id'))
        ids.push($(this).attr('id'));
});

10-07 13:33