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

2024年11月17日 15:57
有1个网友回答
网友(1):

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