잡동사니에도 사랑을

[21.10.06] exam02(02_jQueryEvent) - 마우스 이벤트 확인(mousedown, mouseup, mouseenter, mouseleave) 본문

JAVA_EE/JQuery

[21.10.06] exam02(02_jQueryEvent) - 마우스 이벤트 확인(mousedown, mouseup, mouseenter, mouseleave)

luvforjunk 2021. 10. 7. 01:37
728x90
반응형
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>Insert title here</title>
<link rel="stylesheet" href="../css/event.css">
</head>
<body>
<h1>마우스 이벤트 확인하기</h1>
<div id="input">
	Do it in Here~!!
</div>
<h2>결과</h2>
<div id="result"></div>

<script type="text/javascript" src="http://code.jquery.com/jquery-3.6.0.min.js"></script>
<script type="text/javascript">
$(function(){
	$('#input').mousedown(function(){
		$('#result').html("Mouse Down Event");
	});
	
	$('#input').mouseup(function(){
		$('#result').html("Mouse Up Event");
	});
	
	$('#input').mouseenter(function(){
		$('#result').html("Mouse Enter Event (onMouseOver)");
	});
	
	$('#input').mouseleave(function(){
		$('#result').html("Mouse Leave Event (onMouseOut)");
	});	
});
</script>
</body>
</html>

 

 

결과1 - 마우스를 올렸을 때

 

결과2 - 올려뒀던 마우스를 내릴 때

 

결과3 - 마우스를 꾹 눌렀을 때

 

결과4 - 마우스 누르는 걸 멈췄을 때

 

728x90
반응형