gpt4 book ai didi

jquery - 自定义工具提示 JQVMap

转载 作者:行者123 更新时间:2023-12-01 00:06:56 25 4
gpt4 key购买 nike

我有一个 JQVMap 当前正在可视化一些数据。 map 上的每个国家都有特定的颜色,并有一个从 0 到 10 的特定数字。

我知道如何显示默认工具提示,您只需将 showTooltip 切换为 true,它就会在 onmouseover 上显示国家/地区名称。我怎样才能在这些工具提示上显示每个国家/地区对应的数字?

谢谢。

最佳答案

有一个 onLabelShow 事件。从文档中...

onLabelShow function(event, label, code)

Callback function which will be called before label is shown. Label DOM object and country code will be passed to the callback as arguments.

也许这样的东西适合你?

$(document).ready(function () {
jQuery('#vmap').vectorMap({
map: 'usa_en',
selectedRegion: 'co',
backgroundColor: '#ffffff',
color: '#E6E7E9',
hoverColor: '#03235E',
enableZoom: false,
showTooltip: true,
onLabelShow: function(event, label, code) {
if (states.toLowerCase().indexOf(code) <= -1) {
event.preventDefault();
} else if (label[0].innerHTML == "Colorado") {
label[0].innerHTML = label[0].innerHTML + " - The state where I live!!";
}
},
});
});

关于jquery - 自定义工具提示 JQVMap,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15723444/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com