$(document).ready(function() {
$(‘#example‘).dataTable();
$(‘#example tbody‘).on(‘click‘, ‘tr‘, function () {
var name = $(‘td‘, this).eq(0).text();
alert( ‘你点击了 ‘+name+‘这行‘ );
} );
} );
原文:http://www.cnblogs.com/chengshuiqiang/p/4607223.html