-1
爲什麼我不能將對象添加到以下數組中?爲什麼我不能將對象添加到以下數組中?
var userNames = {};
var input = $(this).text();
console.log('input=' + input); //success
userNames.push(input);
爲什麼我不能將對象添加到以下數組中?爲什麼我不能將對象添加到以下數組中?
var userNames = {};
var input = $(this).text();
console.log('input=' + input); //success
userNames.push(input);
.push
應該array
使用。 {}是一個對象,並且您無法將其推入對象。
您既可以使用[],使用戶名數組,
var userNames = [];
userNames.push(input)
var userNames = [];
var input = $(this).text();
console.log('input=' + input); //success
userNames.push(input);
數組初始化程序是這樣的:'[]'。你得到的是一個物體。 – Pointy