我正在使用jQuery並在document.ready上填充數組。從onclick函數訪問javascript數組
在我的頁面中,我有一些單擊事件的元素。我在document.ready函數外定義了該函數。
我似乎無法弄清楚如何從我的onclick函數中訪問該數組變量。
爲了簡化,我想是這樣工作的:
$(document).ready(function(){
var artists = new Array();
artists.push('item1');
artists.push('item2');
});
function clickLink() {
alert(artists[0]);
}
閱讀'var'的功能。爲什麼這會阻止'artists'在其他函數中被訪問(更少,存在)? – user2864740