2017-07-29 61 views
0

空我寫檢查的天氣數據表中的任何行存在或不是我寫一些代碼,請給我建議,我爲它做的代碼。找到DataTable中是否有任何行或會以JavaScript

$('#del').click(function() { 
 

 
       
 
       tab.row('.selected').remove().draw(); 
 
       
 
      if(window.clck===true){ 
 

 
       \t if($("#table").length > -1){ 
 

 
     // toastr.options.timeOut = 1500; 
 
     // toastr.success("empity"); 
 

 
     toastr.options.timeOut = 1500; 
 
     toastr.success('deleted'); 
 

 
      } 
 

 
    else if($("#table").length <= 0){ 
 

 
     \t toastr.options.timeOut = 1500; 
 
     toastr.success('empity'); 
 

 
      } 
 

 
    } 
 

 
    else 
 
    { 
 
    \t toastr.options.timeOut = 1500; 
 
     toastr.success('please select a row'); 
 
    } 
 
                  
 
    }); 
 

+0

請檢查該https://stackoverflow.com/questions/10360450/how-對檢查-IF-A-TR-包含-A-TD-與-A-特定CSS類與 - jQuery的 –

回答

0

如果(!tab.data()。任何()){

  toastr.options.timeOut = 1500; 
      toastr.success('table is empty'); 

     } 


      else{ 
        tab.row('.selected').remove().draw(); 
        toastr.options.timeOut = 1500; 
        toastr.success('deleted'); 

      } 
相關問題