我在我的网络应用程序中使用Jquery Datatable。我想将自定义按钮添加到从datatable生成的行。 button should display in the are marked in red
有人可以为此提出一些解决方案吗?
答案 0 :(得分:1)
使用DataTable的属性如下
$(document).ready(function() {
$('#example').DataTable( {
dom: 'Bfrtip',
buttons: [
{
text: 'My button',
action: function ( e, dt, node, config ) {
alert( 'Button activated' );
}
}
]
} );
} );