我需要遍历所有表元素,在某处保留索引,然后循环遍历这些表中的所有元素。想法是将关于表内元素的信息及其表索引添加到数据库中。
答案 0 :(得分:20)
$('table').each(function(index) {
$(this).find('*').each(function() {
/* do magic */
});
});
答案 1 :(得分:-1)
只需使用children()选择parent的所有元素:
$('table').children().hide();