我正在尝试在svg元素上触发mouseleave / mouseout事件(在本例中为rect)但在Microsoft Edge上有问题。
这是Plunker复制问题。 边缘版本为40.15063.0.0
使用chrome和Firefox,我也尝试过jquery或事件委派。
<rect id="rect1" x="160" y="10"
width="60" height="60" fill="blue"
onmouseover="evt.target.setAttribute('opacity', '0.5');"
onmouseout="evt.target.setAttribute('opacity','1)');"/>