怎么用JQuery取得Table的所有行的第一列

2024-12-14 07:50:53
推荐回答(4个)
回答1:





Ball




$ (function ()
    {
    $ ("table tr :nth-child(1)").each (function (i, dom)
    {
    alert ($ (this).html ());
    });
    });












111 333
222 355


回答2:

jQuery("#table tr td:eq(0)").each(function(){
console.log(this);

})

回答3:

$(table).find(tr).children(td).eq(0);

回答4:

$("table tr").find("td:eq(0)")