嘗試從我的對象數組中獲取作爲文本的內容。返回對象內容[object Object]
var array = [
first = {
name: 'first',
color: 'red',
},
second = {
name: 'second',
color: 'green',
},
third = {
name: 'third',
color: 'blue',
},
];
$('.first').text(first);
$('.second').text(second);
$('.third').text(third);
而是我得到:
[object Object]
似乎無法找到這個隨時隨地的答案,我失去了一些東西明顯?
甚至是什麼[object Object]? –
這是你將對象轉換爲字符串時得到的結果:'「」+ {}'。 – Amadan