用jquery 得到选择table 某一行的数据、?

2024-11-20 09:30:06
推荐回答(3个)
回答1:




行1列1行1列2行1列3
行2列1行2列2行2列3

来个点击的
$("table tr").click(function()
{
var $this = $(this);

//$this就是这个行,你点哪行,哪行就有反应。

})

回答2:

$("#表id").children().children()[i]
通过表的id,找到表,children()是找到表下边的所有行,i 是你要取哪一行的[0,1,2,3,4....]都行

回答3:




行1列1行1列2行1列3
行2列1行2列2行2列3