怎样用jquery获取某个td相对于table的索引值?

2024-11-15 05:46:52
推荐回答(3个)
回答1:

td是列,tr是行:

回答2:
















111 111 111 111
111 111 111 111

$(function(){
var $tb = $('#J_tb');
var $td = $tb.find('td');
$td.click(function(){
alert($td.index($(this)));
})
})

回答3:

td只能相对于tr有索引值
使用jQueryObject.index()获取

希望对您有帮助~
By Billskate