我有以下示例代码:
type = 'Foo';
test = {
type: {
'fooVal': 'bar'
}
}
alert(test.type.fooVal); // Bar
alert(test.Foo.fooVal); // TypeError: teste.Foo is undefined
我怎样才能让第二个警报起作用?
我试过了:
test = {
'"' + type + '"': {
'fooVal': 'bar'
}
}
但不起作用。