jquery问题:获取table里第5个td的text()

2024年11月17日 12:54
有2个网友回答
网友(1):

$("table").find("tr:eq(4)").each(function () {
if($.trim($(this).text())==""){
$(this).remove();

}

});

网友(2):

$(".classname").find("tr:eq(4)").each(function (i){
        var text = $(this).find("td").html();
        if($.trim(text)==""){
            $(this).remove();
        }   
});