jQuery 함수 offset() width() mouseenter() mouseleave() click() hover() on()
1. offset 함수 jQuery 의 offset 함수는 대상이 시작되는 x좌표와 y좌표 값을 리턴한다. 2. width 함수 대상 엘리먼트의 폭을 반환한다. $("button").click(function(){ alert($("div").width()); }); 3. mouseenter 함수 / mouseleave 함수 마우스포인터가 해당 객체위로 올라왔을 경우에 호출된다. 바로 확인하려면 아래 링크 클릭!!!http://www.w3schools.com/jquery/tryit.asp?filename=tryjquery_event_mouseenter_mouseleave 4. click 함수 해당객체에 마우스클릭이 일어났을 때 호출된다. 바로 확인하려면 아래링크 클릭!!!http://www.w3school..
IT공부방/jQuery, ajax, java
2016. 7. 22. 17:51