2016-08-31 46 views
0
buttons: [ 
    { 
    extend: 'excelHtml5', 
    title: 'LicenseDetails_'+(++download_file_counter)+'_'+today,    
    text: 'Excel', 
    exportOptions: { 
     modifier: { 
     page: 'current'       
     } 
    } 
    } 
] 

單擊excel按鈕下載文件計數器應增加。請告訴我在哪裏添加onclick事件。如何添加數據表按鈕中的點擊事件如excel

回答

1

我希望這能解決您的問題。

$(".buttons-excel").on('click',function(){ 

//Do some operations here. 
}); 

如果您有任何疑問,請評論

相關問題