如何從我的randomImage.imagePicker方法中選擇randomImage.images數組中的字符串?如何在對象方法中選擇JavaScript對象數組
(function() {
var randomImage = {
images : [
'http://placehold.it/100x100',
'http://placehold.it/200x200',
'http://placehold.it/300x300',
'http://placehold.it/400x400'
],//images Array
imagePicker : function() {
return console.log(randomImage.images[2]);
}()//imagePicker Method
}//randomImage Object
})()
我得到以下錯誤在控制檯:
Uncaught TypeError: Cannot read property 'images' of undefined
完全一樣的。 'randomImage.images [2]'訪問數組中的第三個元素。不確定你的問題是什麼? –