Home > Article > Web Front-end > The event attribute onmouseout is triggered when the mouse pointer moves outside the element in HTML.
Example
Execute a section when the mouse pointer moves outside the imageJavaScript:
<img onmouseout="normalImg(this)" src="smiley.gif" alt="Smiley">
Browser support
IE
Firefox
Chrome
Safari
Opera
All major browsers support the onmouseout attribute.
Definition and usage
The onmouseout attribute is triggered when the mouse pointer moves outside the element.
Note: The onmouseout attribute does not apply to the following elements: dde6fb694e6711ae5e6f381704c04ae4, 71af07a0e88a1ac1ff73f855702ac153, 0c6dc11e160d3b678d68754cc175188a, 93f0f5c25f18dab9d176bd4f6de5d30e, 100db36a723c770d327fc0aef2ce13b1, d5ba1642137c3f32f4f4493ae923989c , e8e496c15ba93d81f6ea4fe5f55a2244, 0c68fef83818661b6da588c77ca3985e, 3f1c4e4b6b16bbbd69b2ee476dc4f83a, c9ccee2e6ea535a969eb3f532ad9fe89 or b2386ffb911b14667cb8f0f91ea547a7.
Differences between HTML 4.01 and HTML5
None.
Syntax
<element onmouseout="script">
Attribute value
Value | Description |
script | Script to run when onmouseout occurs. |
HTML tag that supports the event:
<a>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <body>, <button>, <caption>, <cite>, <code>, <dd>, <dfn>, <p>, <dl>, <dt>, <em>, <fieldset>, <form>, <h1> to <h6>, <hr>, <i>, <img>, <input>, <kbd>, <label>, <legend>, <li>, <map>, <ol>, <p>, <pre class="brush:php;toolbar:false">, <samp>, <select>, <small>, <span>, <strong>, <sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>, <th>, <thead>, <tr>, <tt>, <ul>, <var>
JavaScript object that supports the event:
layer, link
instance
In the following example, we will display a dialog box when the mouse pointer moves out of the image:
<img src="/i/example_mouse2.jpg" alt="mouse" onmousemove="alert('您的鼠标刚才离开了图片!')" />
The above is the detailed content of The event attribute onmouseout is triggered when the mouse pointer moves outside the element in HTML.. For more information, please follow other related articles on the PHP Chinese website!