我有这个代码:
$(".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);
怎么了?