我想点击单元格数据,我得到了这段代码,但它给了我undefined
。
任何人都可以帮助我。
<script type="text/javascript">
var table = $('#performanceReportLocation').DataTable();
$('#performanceReportLocation`tbody').on('click',"td",function() {
alert( table.cell( this ).data() );
});
</script>
答案 0 :(得分:0)
也许语法是这样的:
var table = $('#example').DataTable();
$('#example tbody').on( 'click', 'td', function () {
var cell = table.cell( this );
var data = cell.data();
});
答案 1 :(得分:0)
您的代码是正确的,但只有一个错字。 '#performanceReportLocation`tbody'包含`而不是空格。