JS中onmouseout的使用细节

来源:互联网 发布:猎流网店优化 编辑:程序博客网 时间:2024/06/06 16:45

onmouseout,onmouseover在使用的过程中,发现在移过标签边缘的时候就会执行这个事件。

<div><ul><li>a</li><li>b</li><li>c</li></ul></div>
在使用时,用jQuery的event事件,只要bind mouseleave和mouseenter即可.


0 0