这是非常基本的......
我仍然坚持要做什么。
alert("The capital of " + n + " is " + capitals.n);
警报中的答案 0 :(得分:2)
使用方括号:
alert("The capital of " + n + " is " + capitals[n]);
您目前拥有的内容将查找标识为capitals
的{{1}}属性,该属性不存在。相反,您希望使用n
的值作为标识符。
答案 1 :(得分:0)
使用方括号代替点表示法:
alert("The capital of " + n + " is " + capitals[n]);
<强>解释强>
capitals.n
查找名为'n'的属性。capitals[n]
查找名为变量n
的属性。(通过在代码中为capitals.n
提供值来验证,例如:capitals.n = 'FOO'
)