SimpleMaps

时间:2018-04-13 07:08:08

标签: javascript jquery css html5 svg

我正在通过 Simplemaps plugin 创建交互式SVG地图。

以下是一个例子。 将鼠标悬停在城市名称上会点亮地图上的相应内容。到目前为止一切正常。但是,我想做其他触发事件,我只是想console.log这个城市的名字onmouseover

$( "#simplemaps_list > li" ).hover(
  function() {
    $( this ).prepend( $( "<span style='color:red'> *</span>" ) );
  }, function() {
    $( this ).find( "span:last" ).remove();
  }
);

enter image description here

以下是官方网站上的相同示例:

https://simplemaps.com/docs/interactive-list#countrymap

在本教程中,我不知道如何跟踪onmouseover事件。

0 个答案:

没有答案