Raphael:鼠标输出在IE11中不工作

Raphael: mouseout not working in IE11

本文关键字:工作 IE11 鼠标 输出 Raphael      更新时间:2023-09-26

我注意到在IE11中,mouseout没有激活我想要的功能。它在Chrome、Firefox和Safari上运行良好。有人知道这是为什么吗?解决方法是什么?

    wheel[segment].mouseout( myHoverOut.bind(null, segment) )
    icon[segment].mouseout( myHoverOut.bind(null, segment) )

完整代码:https://jsfiddle.net/8aue977o/

工作轮:(滚动到轮子)https://www.uk-cpi.com/services/innovation-integrator

可以使用纯JS,这很简单:http://jsfiddle.net/qHfJD/76/

<script>
var myDiv = document.getElementById('foo');
myDiv.onmouseout = function() { 
alert('left');
}
</script>