티스토리 뷰
example)
1 2 3 4 5 6 7 8 9 10 11 |
$("#btn2").click(function(){ console.log("btn2 clicked"); boxClass.boxHandler(); }); $("#prevBtn").mousedown(leftDownHandler).mouseup(leftUpHandler); $("#nextBtn").mousedown(rightDownHandler).mouseup(rightUpHandler); $("#active2_0").click(function(){chageImage(0)}); $("#active2_1").click(function(){chageImage(1)}); $("#active2_2").click(function(){chageImage(2)}); |
9 : changeImage함수에대한 호출은 click(changeImage); 으로 쓸수있지만, 매개변수를 넘겨주려면
click.function(){(function()} 으로 쓴다.
'■ 프론트엔드 ■ > jQuery' 카테고리의 다른 글
.ready - DOM 전체가 로드되면 기능이 실행 (0) | 2013.10.13 |
---|---|
.css - 속성제어 (0) | 2013.10.13 |
id, class, style - 속성제어 3가지방법 (0) | 2013.10.13 |
구글 제이쿼리 라이브러리 (0) | 2013.10.13 |
addClass(), 클래스 추가하기 (0) | 2013.10.13 |
댓글