0

我正在使用JQuery VectorMap

当我点击一个国家时,会显示包含描述的工具提示。

但是,当我单击另一个国家/地区时,之前显示的工具提示不会从屏幕上删除。

我不明白为什么单击区域的工具提示仍然显示,因为 onRegionClick 事件不保存工具提示的状态。

这是代码:

onRegionClick: function(event, code){
if (gdpData[code]) {

$('#currencyHidden').val(wm2idCurrencyMap[code]);
$('#calculatorCurrencyToHidden').val(wm2idCurrencyMap[code]);
$('#calculatorWmCurrencyToHidden').val(wm2idCurrencyMap[code]);

submitCurrenciesFormWithOptions();
}
},

function submitCurrenciesFormWithOptions() {
// sets the form options and submits the form
$('#currenciesForm').ajaxSubmit(currenciesFormOptions);
//submitCalculatorFormWithOptions();
return false;
}

谢谢 !

4

1 回答 1

0

检查您的 onLabelShow 功能。

onLabelShow: function(e, el, code){
    el.html(el.html()+' (GDP - '+gdpData[code]+')');
};

jvectormap 示例网站网址。http://jvectormap.com/examples/world-gdp/

于 2014-04-28T03:03:20.600 回答