Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
var config = { xxx : 'foo' } var env = { foo : { }, bar : { } }
如何使用对象值从另一个对象中检索值?
像:
env.config.xxx?
var object1 = { value : 'hello' } var object2 = { o : object1 } alert(object2.o.value);
</p>