我在单击超链接时尝试获取一行索引我也从此标记传递了一些其他数据
<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()
但两者都不起作用
答案 0 :(得分:1)
这将为您提供所选元素的最近行ID。
var row_id = $(this).closest('tr').index()
回复您的评论(再次):http://jsfiddle.net/vcLvxycv/4/
这与行ID无关,将按要求返回索引!
OK!最后编辑我想我知道你的意思。在输入框中键入其中一个行ID,然后它将返回该行的索引