2

我正在使用 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 个国家。

4

1 回答 1

4

得到了答案

jQuery('#vmap2').vectorMap('set', 'colors', { au: '#9e2842'});

有用

于 2014-01-06T03:21:40.897 回答