私はこのコードを持っています:
$(".categoty-add").each(function(i) {
categories[i][0] = $(this).val();
});
そして出力で私は得る
TypeError: can't convert undefined to object
categories[i][0] = $(this).val();
これは私の配列です:
var categories = new Array(2);
for (i = 0; i < categories . length; ++ i)
categories [i] = new Array (2);
どうしたの?