onmousemove 事件


onmousemove 事件

實例

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<script>
function bigImg(x){
	x.style.height="64px";
	x.style.width="64px";
}
function normalImg(x){
	x.style.height="32px";
	x.style.width="32px";
}
</script>
</head>
<body>

<img onmousemove="bigImg(this)" onmouseout="normalImg(this)" border="0" src="smiley.gif" alt="Smiley" width="32" height="32">
<p>函数 bigImg() 在鼠标指针移动到笑脸图片是触发。</p>
<p>函数 normalImg() 在鼠标指针移出笑脸图片是触发。</p>

</body>
</html>

##執行實例»點擊"執行實例" 按鈕查看線上實例


定義和用法

onmousemove 事件會在滑鼠指標移出指定的物件時發生。

語法

In HTML:

<
elementonmousemove="SomeJavaScriptCode">
In JavaScript:

object.onmousemove=function(){SomeJavaScriptCode};

#參數描述必要。規定該事件發生時執行的 JavaScript。
#SomeJavaScriptCode


瀏覽器支援

QQ截图20161108165429.png

#所有主要瀏覽器都支援onmousemove 事件


支援此事件的HTML 標籤:

onmousemove 屬性可用來使用HTML 元素,除了: <base>, <bdo>, <br>, <head>, <html>, <iframe>, <meta>, <param>, <script>, <style>, and <title>.



#