JQuery -- Mouseover와 Mouseenter의 차이점
마우스 포인터가 선택한 요소를 통과할 때만mouseenter 이벤트를 터치합니다.
<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.0/jquery.min.js"></script>
<script type="text/javascript">
x=0;
y=0;
$(document).ready(function(){
$("div.over").mouseover(function(){
$("#id_span").text(x+=1);
});
$("div.enter").mouseenter(function(){
//$(".enter span").text(y+=1);
$("#id_span2").text(y+=1);
});
});
</script>
</head>
<body>
<p> , mouseover 。</p>
<p> , mouseenter 。</p>
<div class="over" style="background-color:lightgray;padding:20px;width:40%;float:left">
<h2 style="background-color:white;"> Mouseover :<span id="id_span"></span></h2>
</div>
<div class="enter" style="background-color:lightgray;padding:20px;width:40%;float:right">
<h2 style="background-color:white;"> Mouseenter :<span id="id_span2"></span></h2>
</div>
</body>
</html>
같은 공간에서mouseover는mouseenter보다 우선합니다.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<script src="lib/jquery.js"></script>
<script src="js/example_action.js"></script>
<title>Untitled Document</title>
<script>
var x = 0;
$(document).ready(function(){
$("button").focus(function(){
$("button").css("background-color", "red");
});
$("button").mouseover(function(){
$("#message").append("mouseover
");
$("button").css("background-color", "blue");
});
$("button").mouseenter(function(){
$("#message").append("mouseenter
");
$("button").css("background-color", "yellow");
});
$("button").click(function(){
$("#message").append("button click!
");
});
$("button").dblclick(function(){
$("#message").append("button dblclick!
");
});
$("#id_div").mouseover(function(){
$("#message").text(x+1);
});
});
</script>
</head>
<body>
<p>This is example action</p>
<p id="message"></p>
<button type="button">focus me red, mouse over blue, click me disapper!</button>
</body>
</html>
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.