从行id和表id获取行索引

时间:2015-06-22 11:38:52

标签: javascript html

我在单击超链接时尝试获取一行索引我也从此标记传递了一些其他数据

<a href="javascript:void(0);" onclick="EditDoctorRow(' + RowCountDoctorVisit + ');">
    <i class="fa fa-edit"></i>
</a>

我试过

$('table#DoctorVisit tr#' + RowCount).index()
$('table#DoctorVisit tr#' + RowCount).closest.index()

但两者都不起作用

1 个答案:

答案 0 :(得分:1)

这将为您提供所选元素的最近行ID。

var row_id = $(this).closest('tr').index()

回复您的评论(再次):http://jsfiddle.net/vcLvxycv/4/

这与行ID无关,将按要求返回索引!

OK!最后编辑我想我知道你的意思。在输入框中键入其中一个行ID,然后它将返回该行的索引

http://jsfiddle.net/vcLvxycv/7/