我正在使用jQuery Datatable
插件用于网格目的。
当我单击网格中的一行时,我想根据存储在行中的ID加载另一个页面。
你能给我一个clickevent吗?
提前谢谢
答案 0 :(得分:0)
$(document).ready(function() {
$('#example').dataTable( {
"fnRowCallback": function( nRow, aData, iDisplayIndex ) {
/* Append the grade to the default row class name */
if ( aData[4] == "A" )
{
$('td:eq(4)', nRow).html( '<b>A</b>' );
}
},
"aoColumnDefs": [ {
"sClass": "center",
"aTargets": [ -1, -2 ]
} ]
} );
} );