2016-05-13 81 views
-2

這裏是我的jQuery代碼:全局變量行不工作

$(document).ready(function() { 
    var row = []; 
    $('tr').click(function() { 
     $tds = $(this).find("td");    // Finds all children <td> elements 
     $.each($tds, function(index) {   // Visits every single <td> element 
      row[index] = $(this).text(); 
     }); 
     console.log(row[6]); // this has values 
    }); 
    console.log(row[6]); //this returns "undefined" 
}); 
+4

當然它是不確定的負載處理程序 - 您不填充數組,直到click事件的'tr'有發生了......代碼工作得很好。 –

+0

你究竟想在這裏完成什麼? – David

+0

正試圖訪問另一個點擊處理按鈕中的行中的數據...但我得到一個undefined –

回答

0
$(document).ready(function(){ 

    var row = []; 

    $('tr').click(function(){ 
     $tds = $(this).find("td");    // Finds all children <td> elements 

      $.each($tds, function(index) {    // Visits every single <td> element 

        row[index] = $(this).text(); 

      });// end loop 


    /* 

     $.fn.returnRow = function(){ 
       console.log("row inside the anonymous:" +row); 
       return row; 
     } 
      console.log 


      */ 
      console.log("what does row "+row[6]); 
     $('#myModalLabel'+row[6]).text(row[0]); 


     }); 


    $('#save'+row[6]).click(function(){ 
     console.log(row[6]); 

       alert("You have clicked Send sms to:"+row[0]); 
       var message = $("#content"+row[6]).val(); 


         $.post("sendSms.php", 
         { 
          phoneNumber: row[0], 
          linkId: row[2], 
          message: message 

         },function(data,status){ 
          $('#save'+row[6]).html('Sent'); 
          console.log(data); 
          console.log(status); 


         }); 

    }); 

}); 
+0

這裏是完整的代碼現在當我在第二次點擊時訪問它(在點擊'tr'之後),行數組似乎是空的 –