最佳答案
我想这会对你有所帮助:@H_301_2@
原文链接:https://www.f2er.com/jquery/428386.htmlColumn Selector@H_301_2@
Row Selector@H_301_2@
要么@H_301_2@
您可以使用JQuery尝试这种类型的代码:@H_301_2@
@H_301_2@
$('#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