0

我有一些表格,我只需要在这个表格中保留一些内容,所以我有这个

 $(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

4

2 回答 2

0

尝试

!$(this).children(':first').get(0).className
于 2013-06-04T10:03:11.067 回答
0

检查属性,像这样

(!$(this).children(':first').not('[class]'))
于 2013-06-04T10:03:12.670 回答