최신 웹 개발 튜토리얼
 

jQuery mousemove() Method

<jQuery를 이벤트 방법

페이지 내의 마우스 포인터의 위치를 ​​얻을 :

$(document).mousemove(function(event){
    $("span").text(event.pageX + ", " + event.pageY);
});
»그것을 자신을 시도

정의 및 사용

mousemove 이벤트는 상기 선택된 요소 내의마다 마우스 포인터 움직임을 발생한다.

mousemove() 메소드는 트리거 mousemove 이벤트를, 또는 때 실행되도록하는 기능을 첨부 mousemove 이벤트가 발생합니다.

참고마다 사용자가 마우스를 하나의 화소를 이동하는 mousemove 이벤트가 발생한다.그것은 모든 처리하는 시스템 자원을 소요 mousemove 이벤트. 조심스럽게이 이벤트를 사용합니다.


통사론

트리거 mousemove 선택한 요소에 대한 이벤트를 :

$(selector).mousemove() Try it

받는 함수에 연결 mousemove 이벤트를 :

$(selector).mousemove(function) Try it

매개 변수 기술
function 선택 과목. 때 실행하는 함수를 지정 mousemove 이벤트가 트리거

그것을 자신을 시도 - 예를

차이 mouseover(), mouseenter()mousemove()
차이점을 보여줍니다 mouseover(), mouseenter()mousemove() .


<jQuery를 이벤트 방법