jQuery 이벤트 - mouseenter() 메소드
Definition and Usage
mouseenter 이벤트는 마우스 포인터가 요소를 통과할 때 발생합니다.
이 이벤트는 mouseleave 이벤트와 함께 가장 자주 사용됩니다.
mouseenter() 메서드는 mouseenter 이벤트를 트리거하거나 mouseenter 이벤트가 발생할 때 실행할 함수를 지정합니다.
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> $(document).ready(function(){ $("p").mouseenter(function(){//鼠标移入颜色改变 $("p").css("background-color","yellow"); }); $("p").mouseleave(function(){//鼠标移出颜色还原 $("p").css("background-color","#E9E9E4"); }); }); </script> </head> <body> <p style="background-color:#E9E9E4">请把鼠标指针移动到这个段落上。</p> </body> </html>
참고: mouseover 이벤트와 달리 mouseenter 이벤트는 마우스 포인터가 선택한 요소를 통과할 때만 트리거됩니다. 마우스 포인터가 하위 요소를 통과하면 mouseover 이벤트도 트리거됩니다. 데모를 보려면 아래 예를 참조하세요.
<html> <head> <script type="text/javascript" src="/jquery/jquery.js"></script> <script type="text/javascript"> x=0; y=0; $(document).ready(function(){ $("p.over").mouseover(function(){ $(".over span").text(x+=1); }); $("p.enter").mouseenter(function(){ $(".enter span").text(y+=1); }); }); </script> </head> <body> <p>不论鼠标指针穿过被选元素或其子元素,都会触发 mouseover 事件。</p> <p>只有在鼠标指针穿过被选元素时,才会触发 mouseenter 事件。</p> <p class="over" style="background-color:lightgray;padding:20px;width:40%;float:left"> <h2 style="background-color:white;">被触发的 Mouseover 事件:<span></span></h2> </p> <p class="enter" style="background-color:lightgray;padding:20px;width:40%;float:right"> <h2 style="background-color:white;">被触发的 Mouseenter 事件:<span></span></h2> </p> </body> </html>
위 내용은 jQuery: mouseenter 이벤트의 사용법과 정의의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!