我想知道mouseevents
是否可能SVG
被另一个SVG
覆盖。
<div id = "svgWrapper>
<svg id = "overlayingSvg" width = "400" height = "400">
<g>
<circle>
....
<svg id = "underlayingSvg" width = "400" height = "400">
<g>
<rect>
....
</div>
在这种情况下,使用鼠标访问underlayingSvg
以在mouseevent
元素上注册rect
。 circle
上的overlayingSvg
也需要mouseevents
。