我让鼠标悬停工作以检索 ID。但是尝试使用 next() 来检索标题 attr (仅 title="01" )但由于某种原因它不起作用。我不确定我在这里缺少什么。
JS:
$(document).on('mouseover','tr[role="row"]',function(){
var VId = $(this).next('[role="gridcell"]').attr('title');
$('#TestPanelA').html(VId);
});
PHP(此表由 jqGrid 生成):
<tr role="row" id="1" tabindex="-1" class="jqgrow ui-row-ltr H0">
<td role="gridcell" style="text-align: left; height: 16px;" title="01" aria-describedby="0Li_A">01</td>
<td role="gridcell" style="text-align: right; height: 16px;" title="822" aria-describedby="0Li_C">822</td>
</tr>