Jquery怎么获取table第一行第一,二个列的值

2024-11-17 15:57:30
推荐回答(1个)
回答1:

var tr =$('table tr').eq(0)
var f = tr.find('td').eq(0)
var s = tr.find('td').eq(1)