嗨,我想了解如何使这些国家/地区可点击。因此,例如,我希望能够拥有一个国家,当您单击它时,会转到另一个页面。
我的代码不起作用
<script>
$(function(){
$('#map').vectorMap({
map: 'world_en',
color: '#4A7E2A',
hoverColor: '#0066FF',
hoverOpacity: 0.5,
backgroundColor: '#fff',
regionsSelectable: true,
onRegionClick: function(event, code)
{
if (code === 'ID') {
window.location = 'index.php?id=Ireland'
}
else if (code === 'RUSSIA') {
window.location = 'index.php?id=Russia'
}
else if (code === 'rp') {
window.location = 'index.php?id=4'
}
}
});
});
</script>