我将jQuery Datatable
插件用于网格目的。当我单击网格中的一行时,我想根据存储在该行中的 ID 加载另一个页面。你能给我提供一个行clickevent吗?
先感谢您
尝试 row_callback
$(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 ]
} ]
} );
} );