我的第一个元素代码,我需要第二个和第三个元素,我该怎么做?
$(".button").click(function(){
var value=$(this).closest('tr').children('td:first').text();
console.log(value);
});
答案 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);
});