2016-01-29 67 views

回答

1

使用DataTable的屬性如下

$(document).ready(function() { 
    $('#example').DataTable({ 
     dom: 'Bfrtip', 
     buttons: [ 
      { 
       text: 'My button', 
       action: function (e, dt, node, config) { 
        alert('Button activated'); 
       } 
      } 
     ] 
    }); 
});