jQuery获取table当前所在行
程序员文章站
2022-05-30 22:59:42
$("p tbody tr").click(function() { ? ? ?
? ?var curr_rows = $(this).prevall().l...
$("p tbody tr").click(function() { ? ? ?
? ?var curr_rows = $(this).prevall().length + 1;//行号
? ?alert(rows?);
? })
//获取表的总行数 tr
$("#tableid").find("tr").length ;
//获取所在行的行号
$(this).parent().prevall().length + 1;//行号
//获取所在列的列号
$(this).prevall().length + 1;//列
下一篇: jquery实现网页查找功能示例分享