在jqvamp中动态更改selectedColor

时间:2016-06-11 10:04:43

标签: javascript html dictionary svg

我正在使用jqvamp插件,我想动态更改selectedColor属性(通过点击其他按钮),但我无法弄清楚如何。

1 个答案:

答案 0 :(得分:1)

var your_variable = "";
// solution 1
// by click 
$('#your_button').click(function(){
your_variable= target_color;
// run the initialization again
test();
});

function test(){
set = $('#map').vectorMap({
//...code
selectedColor: your_variable
//...code
});
}

// solution 2
$('#your_button').click(function(){
$('#map').vectorMap("set", "selectedColor", your_variable);
});

希望这有效