2012-10-05 65 views

回答

5

對象支撐架符號和點符號...

var country = 'belgium'; 

var countryCoords = { 
    argentina: '56 100', 
    belgium: '100 200' 
} 

countryCoords[country]; // '100 200' 
countryCoords.belgium; // '100 200' 
+0

看到了嗎?真的很簡單,但我的頭腦無法得到它!謝謝凱爾,你先到那裏。 –

+0

不客氣。請給@dystroy一個骨頭,並且贊成,因爲我相信他在和我同時回答。 – Kyle

+0

我先回答了。但是,如果凱爾更清楚,接受他的答案完全沒有問題。這裏的目標是解釋;) –

3

你讓他們與

var coords = countryCoords[country]; 
0

可以使用country作爲重點提取出來:

console.log(countryCoords[country]); 
相關問題