当用户鼠标悬停在交互式等值区域地图上时,我需要生成带有州名文字的javascript警报(或将其存储在变量中)http://leafletjs.com/examples/choropleth.html
我尝试存储div class =“info leaflet-control”的内容,但没有成功
非常感谢!
由于这个post
,我创建了这个jquery代码 $(".info.leaflet-control").bind("DOMSubtreeModified", function() { console.log($(".info.leaflet-control").find( "b" ).text()); });
并且有效!
答案 0 :(得分:1)
忘记jQuery,并使用Leaflet事件处理,将事件处理程序附加到要监视的功能上的mouseover
事件。收到的事件将包含触发事件的所有功能属性。
请参阅http://playground-leaflet.rhcloud.com/buh/edit?html,output