我想获取光标下的元素。当我使用document.querySelectorAll(":hover");
时,它在 Chrome 中运行良好,但在 Firefox 或 IE 中不起作用。
可能是因为我在 Google 地图的 eventListener 中使用了它。这里我如何使用它。
google.maps.event.addListener(polygon,"mouseout",function(){
elementHover = document.querySelectorAll( ":hover" );
alert(elementHover[elementHover.length-1].id);
});
在 Chrome 中,它为我提供了我用光标悬停的元素的 id,但在 IE 或 FF 中我什么也得不到。