-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"
});
當然它是不確定的負載處理程序 - 您不填充數組,直到click事件的'tr'有發生了......代碼工作得很好。 –
你究竟想在這裏完成什麼? – David
正試圖訪問另一個點擊處理按鈕中的行中的數據...但我得到一個undefined –