onmouseout ʼþ

¶¨ÒåºÍÓ÷¨

onmouseout ʼþ»áÔÚÊó±êÖ¸ÕëÒÆ³öÖ¸¶¨µÄ¶ÔÏóʱ·¢Éú¡£

Óï·¨

onmouseout="SomeJavaScriptCode"
²ÎÊý ÃèÊö
SomeJavaScriptCode ±ØÐè¡£¹æ¶¨¸Ãʼþ·¢ÉúʱִÐÐµÄ JavaScript¡£

Ö§³Ö¸ÃʼþµÄ HTML ±êÇ©£º

<a>, <address>, <area>, <b>, <bdo>, <big>, <blockquote>, <body>, <button>, 
<caption>, <cite>, <code>, <dd>, <dfn>, <div>, <dl>, <dt>, <em>, <fieldset>, 
<form>, <h1> to <h6>, <hr>, <i>, <img>, <input>, <kbd>, <label>, <legend>, 
<li>, <map>, <ol>, <p>, <pre>, <samp>, <select>, <small>, <span>, <strong>, 
<sub>, <sup>, <table>, <tbody>, <td>, <textarea>, <tfoot>, <th>, <thead>, 
<tr>, <tt>, <ul>, <var>

Ö§³Ö¸ÃʼþµÄ JavaScript ¶ÔÏó£º

layer, link

ʵÀý 1

ÔÚÏÂÃæµÄÀý×ÓÖУ¬ÎÒÃǽ«ÔÚÊó±êÖ¸ÕëÒÆ³öͼÏñʱÏÔʾһ¸ö¶Ô»°¿ò£º

<img src="/i/example_mouse2.jpg" alt="mouse"
onmousemove="alert('ÄúµÄÊó±ê¸Õ²ÅÀ뿪ÁËͼƬ£¡')" />

Êä³ö£º(Çë°ÑÊó±ê´ÓͼƬÉÏÒÆ¿ª):

Visit W3School!

ʵÀý 2

ÏÂÃæµÄÀý×ÓÖУ¬ÎÒÃǽ«ÔÚÍøÒ³ÉÏÌí¼ÓÒ»¸öÓÃ×÷Á¬½Ó°´Å¥µÄͼÏñ£¬È»ºóÎÒÃÇ»áÌí¼Ó onMouseOver ºÍ onMouseOut ʼþ£¬ÕâÑù¾Í¿ÉÒÔÔÚÔËÐÐÁ½¸ö JavaScript º¯ÊýÀ´Çл»Á½·ùͼÏñ£º

<html>
<head>
<script type="text/javascript">
function mouseOver()
{
document.getElementById('b1').src ="/i/eg_mouse.jpg"
}
function mouseOut()
{
document.getElementById('b1').src ="/i/eg_mouse2.jpg"
}
</script>
</head>

<body>
<a href="http://www.w3school.com.cn" 
onmouseover="mouseOver()" onmouseout="mouseOut()">
<img alt="Visit W3School!" src="/i/example_mouse2.jpg" id="b1" />
</a>
</body>
</html>

Êä³ö£º

Visit W3School!

TIY

onmouseout
ÈçºÎʹÓà onmouseout¡£
VUE