使用 jquery和jqvmap,我在美国地图中设置了多种状态颜色.例如,要将所有以“A”红色开头的状态着色,这样可以: jQuery('#vmap').vectorMap('set', 'colors', {al: 'red'});jQuery('#vmap').vectorMap('set', 'color
jQuery('#vmap').vectorMap('set', 'colors', {al: 'red'}); jQuery('#vmap').vectorMap('set', 'colors', {ak: 'red'}); jQuery('#vmap').vectorMap('set', 'colors', {az: 'red'}); jQuery('#vmap').vectorMap('set', 'colors', {ar: 'red'});
有没有办法让它更短?我想这样做:
var astates = ["al", "ak", "az", "ar"]; for (var i = 0; i < astates.length; ++i) { jQuery('#vmap').vectorMap('set', 'colors', { 'astates[i]' : 'red'}); }
但这似乎不起作用.
谢谢
var fc = 'red'; // you'll need this if you'll want to change the whole group color someday jQuery('#vmap').vectorMap('set', 'colors', {al: fc, ak: fc, az: fc, ar:fc});