我正在使用数据表,在点击一行后,页面会重新加载其他帖子参数。我想要实现的是,在页面重新加载后,所选行再次突出显示。
代码段:
Jquery的:
gTable = $('#goals').dataTable( {
"bProcessing": true,
"bServerSide": true,
"bLengthChange": false,
"iDisplayLength":10,
"sAjaxSource": "json_goals.php",
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"aoColumns" : [ null,null,null],
"fnServerData": function ( sSource, aoData, fnCallback ) {
aoData.push( { "name": "missionId", "value": <?php echo $id; ?> } );
$.ajax( {
"dataType": 'json',
"type": "GET",
"url": sSource,
"cache": false,
"data": aoData,
"success": fnCallback
} );
},
"fnRowCallback": function( nRow, aData, iDisplayIndex ) {
if ( aData[0] == <?PHP echo $goalid; ?> ) { $('tr', nRow).addClass('highlight');} // this succeeds, tested with alert.
return nRow;
}
});
CSS:
tr.highlight td{font-weight: bold;background-color: Yellow;}
HTML:
<table id="goals" class="display"><col style="width: 10%"/><col style="width: 20%"/><col style="width: 70%"/>
<thead><tr>
<th>goalId</th>
<th>Goal Type</th>
<th>Display Text</th>
</tr></thead><tbody><tr><td colspan="3">Loading....</td></tr></tbody>
</table>
刷新:
$("#goals tbody tr").live('click',function(event) {
$(gTable.fnSettings().aoData).each(function (){
$(this.nTr).removeClass('row_selected');});
$(event.target.parentNode).addClass('row_selected');
var aData = gTable.fnGetData(this);
window.location.replace("missions.php?goalid=" + aData[0] + "&id=" + <?PHP echo $id; ?> + "#tabs-5");});
一切正常,但行没有突出显示。 关于如何处理这个的任何想法? 感谢。
答案 0 :(得分:0)
似乎你的jQuery $()选择器并没有获得你想要的元素的句柄。尝试使用$('#goals tr').eq(nRow).addClass('highlight');
有关详细信息,请参阅this post