layuiDataTable 某列单机事件

layuiDataTable 某列单机事件

$('#example tbody').on('click','tr td:nth-child(3)', function (e) {
    
    
   var name = $(this).text();
    alert(name);
} );

Guess you like

Origin blog.csdn.net/qq_42455262/article/details/120655473