从td获得价值

时间:2016-02-25 11:50:46

标签: jquery

我的第一个元素代码,我需要第二个和第三个元素,我该怎么做?

$(".button").click(function(){    
    var value=$(this).closest('tr').children('td:first').text();
    console.log(value);
});

2 个答案:

答案 0 :(得分:1)

使用以下eq()方法。

$(".button").click(function () {
    var tds = $(this).closest('tr').find('td');

    var first = tds.eq(0).text();
    var second = tds.eq(1).text();
    var third = tds.eq(2).text();
});

答案 1 :(得分:0)

你可以这样给出

$(".button").click(function(){    
       var second=$(this).closest('tr').children('td:nth-child(2)').text();
       var third=$(this).closest('tr').children('td:nth-child(3)').text();
       console.log(seond + " "+third);
 });