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.
我有一个世界 jVectormap 世界地图,我希望在 onclick 方法中运行一个脚本来单击国家/地区。有没有办法返回国家名称而不是国家代码?如果没有,有没有办法将国家代码转换为国家名称,而不是通过长 case / if 语句运行它?
谢谢
尝试这个
onRegionClick: function (event, code) { var map = $('#world-map').vectorMap('get', 'mapObject'); var name = map.getRegionName(code); },