我使用datatables(http://datatables.net/)来创建带有JSON的表,我有一个代码:
最佳答案
我想这会对你有所帮助:
原文链接:https://www.f2er.com/jquery/428386.html要么
您可以使用JQuery尝试这种类型的代码:
$('#example tbody').on( 'click','td',function () {
alert('Data:'+$(this).html().trim());
alert('Row:'+$(this).parent().find('td').html().trim());
alert('Column:'+$('#example thead tr th').eq($(this).index()).html().trim());
});
这是JQuery代码的小提琴:CLICK HERE