我正在使用jqvamp
插件,我想动态更改selectedColor
属性(通过点击其他按钮),但我无法弄清楚如何。
答案 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);
});
希望这有效