我正在使用 jQuery VMap,它适用于这段代码
jQuery('#vmap2').vectorMap({
map: 'world_en',
backgroundColor: '#fff',
color: '#9e2842',
hoverOpacity: 0.6,
selectedColor: '#8B0000',
enableZoom: true,
showTooltip: true,
values: sample_data,
scaleColors: ['#D35471', '#691B2D'],
selectedRegion: null,
normalizeFunction: 'polynomial',
onRegionClick: function(element, code, region)
{
if (region == "Singapore") {
document.getElementById('mailblock').innerHTML = 'Contact Information for Singapore :';
}
if (region == "HongKong") {
document.getElementById('mailblock').innerHTML = 'Contact Information for HongKong :';
}
}
});
现在我想改变选定国家的颜色,只说悬停时的 5-6 个国家。