1

我将jQuery Datatable插件用于网格目的。当我单击网格中的一行时,我想根据存储在该行中的 ID 加载另一个页面。你能给我提供一个行clickevent吗?

先感谢您

4

1 回答 1

0

尝试 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 ]
        } ]
    } );
} );
于 2013-08-21T09:34:22.677 回答