我有一些表格,我只需要在这个表格中保留一些内容,所以我有这个
$(truc).find('tr').each(function(lig) {
if (lig != 0 && (!$(this).children(':first').not('')) && (!$(this).children(':first').hasClass('main-title')) && (!$(this).children(':first').hasClass('top-top-title'))) {
$(this).remove();
}
;
}
我需要帮助,(!$(this).children(':first').not(''))
因为我需要选择第一个孩子没有班级(甚至没有空班)的行,而且我不知道我需要哪些指令
编辑:我自己解决了检查$(this).children(':first')
他们是否有属性类的
问题$(this).children(':first').attr('class')
,所以如果一个元素没有类,它就不会进入 if