0
var config = {
xxx : 'foo'
}
var env = {
foo : {
},
bar : {
}
}
如何使用對象值從其他對象檢索值?Javascript - 依賴其他對象的對象
喜歡:
env.config.xxx?
var config = {
xxx : 'foo'
}
var env = {
foo : {
},
bar : {
}
}
如何使用對象值從其他對象檢索值?Javascript - 依賴其他對象的對象
喜歡:
env.config.xxx?
var object1 = { value : 'hello' }
var object2 = { o : object1 }
alert(object2.o.value);
小心分號和'config'那個逗號。 http://goo.gl/JYnzc – Oleg