我試圖找到表中某一行的索引。我試圖使用下面的代碼,但我似乎得到-1的索引。如何使用jQuery查找表中某一行的索引
$(document).ready(function()
{
$("tr").click(function(){
var index = $("table").index($(this));
$("span").text("That was row index #" + index);
});
});
使用看起來像這樣的html;
<table>
<tbody>
<tr><td>click</td></tr>
<tr><td>click</td></tr>
<tr><td>click</td></tr>
<tr><td>click</td></tr>
</tbody>
感謝
var index = $(this).index(); – 2017-05-04 15:15:24