我有我的表有問題,我需要把幾個變量在我的表,這是我的錯誤問題JS表
TypeError: tabproduit[i] is undefined
tabproduit[i][0] = $(this).text();
,這是我的代碼
var tabproduit = new Array(new Array());
var i = 0 ;
$(".eachnom").each(function(index) {
tabproduit[i][0] = $(this).text();
i++;
});
但是,當我不把i++;
我沒有錯誤,但我只有1變量在我的表;如何把這個i++;
?
在此先感謝
使用'index'而不是'i'.Its也在每個函數調用中遞增。像這樣'tabproduit [index] [0]' – prasanth
問題是你還沒有顯示你的html部分 – Mahi