온마우스아웃 이벤트


onmouseout event

Instance

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

</body>
</html>

인스턴스 실행»

온라인 인스턴스를 보려면 "인스턴스 실행" 버튼을 클릭하세요


정의 및 사용법

onmouseout 이벤트는 마우스 포인터가 움직일 때 발생합니다. 지정된 개체 시간을 벗어나 이동하는 경우가 발생합니다.

Syntax

HTML:

<elementonmouseout="SomeJavaScriptCode">

JavaScript:

object.onmouseout=function(){ SomeJavaScript 코드};

ParametersDescription
SomeJavaScriptCode필수입니다. 이 이벤트가 발생할 때 실행할 JavaScript를 지정합니다.


브라우저 지원

QQ截图20161108165429.png

모든 주요 브라우저는 onmouseout 이벤트를 지원합니다


이 이벤트를 지원하는 HTML 태그:

onmouseout 속성은 다음을 제외하고 HTML 요소를 사용하는 데 사용할 수 있습니다: <base> ,
, , ,