JavaScript Reference/Event Handlers Reference/onMouseOver
Содержание
"onMouseOver" Example
<head>
<script language="JavaScript">
function function1(){
alert("The "+event.type+" event fired")
}
</script>
</head>
<body>
<div id="myDiv" onmouseover="function1()">
Move the mouse over this div element area.
</div>
</body>
"onMouseOver" is applied to
+----------------+--------------------------------------------------------------+
| Applied_To |<a> <acronym> |
| |<address> <applet> |
| |<area> <b> |
| |<bdo> <big> |
| |<blockquote> <body> |
| |<button> <caption> |
| |<center> <cite> |
| |<code> <custom> |
| |<dd> <del> |
| |<dfn> <dir> |
| |<div> <dl> |
| |document <dt> |
| |<em> <embed> |
| |<fieldset> <font> |
| |<form> <hn> |
| |<hr> <i> |
| |<img> <input type="button"> |
| |<input type="checkbox"> <input type="file"> |
| |<input type="image"> <input type="password"> |
| |<inputtype="radio"> <input type="reset"> |
| |<input type="submit"> <input type="text"> |
| |<ins> <kbd> |
| |<label> <legend> |
| |<li> <listing> |
| |<map> <marquee> |
| |<menu> <nobr> |
| |<noframes> <noscript> |
| |<object> <ol> |
| |<optgroup> <option> |
| |<p> <pre> |
| |<q> <rt> |
| |<ruby> <s> |
| |<samp> <select> |
| |<small> <span> |
| |<strike> <strong> |
| |<sub> <sup> |
| |<table> <tbody> |
| |<td> <textarea> |
| |<tfoot> <th> |
| |<thead> <tr> |
| |<tt> <u> |
| |<ul> <var> |
| |<xmp> |
+----------------+--------------------------------------------------------------+
"onMouseOver" Properties
+----------------+--------------------------------------------------------------+
| Properties |altKey altLeft |
| |button cancelBubble |
| |clientX clientY |
| |ctrlKey ctrlLeft |
| |fromElement offsetX |
| |offsetY returnValue |
| |screenX screenY |
| |shiftKey shiftLeft |
| |srcElement toElement |
| |type x |
| |y |
+----------------+--------------------------------------------------------------+
"onMouseOver" Syntax and Note
Note:
This event fires when the user moves the mouse pointer over an object.