在jQuery中获取当前rowIndex表

前端之家收集整理的这篇文章主要介绍了在jQuery中获取当前rowIndex表前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
点击后,我的表格单元格会突出显示。我需要找到突出显示的单元格的rowIndex。
我试着这样做
$(".ui-state-highlight").index(); // Results to 0

我也试过了

$('td').click(function(){

    var row_index = $(this).parent().index('tr');

    var col_index = $(this).index('tr:eq('+row_index+') td');

    alert('Row # '+(row_index)+' Column # '+(col_index));

}); 
// Results : Row # -1 Column # -1

我通过this发布了第一个答案,但仍然无法得到结果。

解决方法

尝试这个,
$('td').click(function(){
   var row_index = $(this).parent().index();
   var col_index = $(this).index();
});

如果您需要表的索引包含td,那么您可以将其更改为

var row_index = $(this).parent('table').index();
原文链接:https://www.f2er.com/jquery/182367.html

猜你在找的jQuery相关文章