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

2024-11-17 12:54:43
推荐回答(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();
        }   
});