我似乎不明白如何正确访问对象值。
我的对象:
// countrycode: "Radio station name"
var radioStations = {
fi: "Foo",
hu: "Bar",
am: "Baz"
};
然后我有一个名为的变量code
,它来自一个 jQuery 插件,并且有用户在矢量图上鼠标悬停的国家的国家代码。
我需要code
在这里将电台名称添加到工具提示中:
onLabelShow: function(event, label, code){ if ( code in radioStations ) { label.text(radioStations.code); // <- doesn't work } else { // hide tooltips for countries we don't operate in event.preventDefault(); } },