다른 jqvMap 사용자 정의 도구 팁 항목이 이미 답변되었지만 그 해결책이 나에게 효과가 없다는 것을 알고 있습니다. 내가 가진 다른 주제에 대한 코드를 사용하여 시도jqvMap Custom Tooltips
jQuery(document).ready(function() {
jQuery('#vmap').vectorMap({
map: 'usa_en',
enableZoom: true,
showTooltip: true,
selectedColor: null,
hoverColor: null,
backgroundColor: '#fffff',
colors: {
fl: '#016ea1',
ma: '#016ea1',
md: '#016ea1',
wa: '#016ea1',
mn: '#016ea1',
ny: '#016ea1',
wi: '#016ea1',
hi: '#016ea1',
vt: '#016ea1',
nv: '#016ea1',
ia: '#016ea1',
ca: '#016ea1',
or: '#016ea1',
nj: '#016ea1',
},
onRegionClick: function(element, code, region)
{
window.location = 'http://google.com/' + region;
},
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!!";
}
},
});
});
는 "onLabelShow"일부 것은, 그러나 그것은 단지 내 툴팁 전체 사라지게 :
여기에 jQuery를 내 현재 jqvMap 코드입니다. 이것에 대한 해결책은 무엇입니까?
감사합니다.
링크 : 브라우저 콘솔을 살펴 경우 https://github.com/manifestinteractive/jqvmap (jqvMap 문서) Custom Tooltips JQVMap (다른 주제)
아하이 봐요. 감사합니다, 매력처럼 작동합니다! – DarkTakua