我正在通过 Simplemaps plugin 创建交互式SVG地图。
以下是一个例子。 将鼠标悬停在城市名称上会点亮地图上的相应内容。到目前为止一切正常。但是,我想做其他触发事件,我只是想console.log
这个城市的名字onmouseover
。
$( "#simplemaps_list > li" ).hover(
function() {
$( this ).prepend( $( "<span style='color:red'> *</span>" ) );
}, function() {
$( this ).find( "span:last" ).remove();
}
);
以下是官方网站上的相同示例:
https://simplemaps.com/docs/interactive-list#countrymap
在本教程中,我不知道如何跟踪onmouseover
事件。