如何用js获取table第1行第2列的值

2024-12-14 09:49:05
推荐回答(2个)
回答1:

$("table tr:first").find("td").eq(1)

获取table第1行第2列  索引为1就是第二个

回答2:

写个id 获取对象,不是更快吗