onmouseenter 事件
实例
将鼠标指针移动到图像上时执行 JavaScript:
<img onmouseenter="bigImg(this)" src="smiley.gif" alt="Smiley">
亲自试一试 »
页面下方有更多实例。
定义和用法
onmouseenter 事件在鼠标指针移动到元素上时发生。
提示:此事件通常与 onmouseleave 事件一起使用,当鼠标指针移出元素时会发生该事件。
提示: onmouseenter 事件类似于 onmouseover 事件。唯一的区别是 onmouseenter 事件不会冒泡(不会向上级文档层次结构传播)。请参阅页面底部的更多实例。
浏览器支持
表中的数字注明了完全支持该事件的首个浏览器版本。
事件 | |||||
---|---|---|---|---|---|
onmouseenter | 30.0 | 5.5 | Yes | 6.1 | 11.5 |
语法
注释: Internet Explorer 8 或更早的版本不支持 addEventListener() 方法。
技术细节
是否支持冒泡: | No |
---|---|
是否支持取消: | No |
事件类型: | MouseEvent |
支持的 HTML 标签: | 所有 HTML 元素,除了: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title> |
DOM 版本: | Level 2 Events |
更多实例
实例
这个例子演示了 onmousemove、onmouseenter 和 mouseover 事件之间的区别:
<div onmousemove="myMoveFunction()">
<p id="demo">I will demonstrate onmousemove!</p>
</div>
<div onmouseenter="myEnterFunction()">
<p id="demo2">I will demonstrate onmouseenter!</p>
</div>
<div onmouseover="myOverFunction()">
<p id="demo3">I will demonstrate onmouseover!</p>
</div>
亲自试一试 »
<p id="demo">I will demonstrate onmousemove!</p>
</div>
<div onmouseenter="myEnterFunction()">
<p id="demo2">I will demonstrate onmouseenter!</p>
</div>
<div onmouseover="myOverFunction()">
<p id="demo3">I will demonstrate onmouseover!</p>
</div>