jQuery w3schools 한글판 강좌23 - Commonly Used jQuery Event Methods - on() 메소드
jQuery w3schools 한글판 강좌23 - Commonly Used jQuery Event Methods - on() 메소드
The on() Method
on() 메소드는 선택된 요소들에 대한 한개 이상의 이벤트 핸들러를 붙여준다
click 이벤트를 한개의 <p>요소에 붙이는 예:
Example
$("p").on("click", function(){
$(this).hide();
});
$(this).hide();
});
여러개의 이벤트 핸들러를 한개의 요소에 붙이는 예:
Example
$("p").on({
mouseenter: function(){
$(this).css("background-color", "lightgray");
},
mouseleave: function(){
$(this).css("background-color", "lightblue");
},
click: function(){
$(this).css("background-color", "yellow");
}
});
게시판 목록
개발자팁
개발과 관련된 유용한 정보를 공유하세요.
질문은 QA에서 해주시기 바랍니다.
질문은 QA에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4466 | PHP | 8년 전 | 2153 | ||
| 4465 | PHP | 8년 전 | 3869 | ||
| 4464 | PHP | 8년 전 | 3137 | ||
| 4463 | PHP | 8년 전 | 2550 | ||
| 4462 | PHP | 8년 전 | 2513 | ||
| 4461 | PHP | 8년 전 | 2328 | ||
| 4460 | PHP | 8년 전 | 2162 | ||
| 4459 | PHP | 8년 전 | 2319 | ||
| 4458 | PHP | 8년 전 | 2110 | ||
| 4457 | PHP | 8년 전 | 2511 | ||
| 4456 | PHP | 8년 전 | 2117 | ||
| 4455 | jQuery |
프로그래머7
|
8년 전 | 2939 | |
| 4454 | jQuery |
프로그래머7
|
8년 전 | 2967 | |
| 4453 | jQuery |
프로그래머7
|
8년 전 | 1957 | |
| 4452 | jQuery |
프로그래머7
|
8년 전 | 2607 | |
| 4451 | jQuery |
프로그래머7
|
8년 전 | 2900 | |
| 4450 | jQuery |
프로그래머7
|
8년 전 | 3228 | |
| 4449 | PHP | 8년 전 | 2384 | ||
| 4448 | PHP | 8년 전 | 3884 | ||
| 4447 | PHP | 8년 전 | 2164 | ||
| 4446 | PHP | 8년 전 | 2681 | ||
| 4445 | PHP | 8년 전 | 2160 | ||
| 4444 | PHP | 8년 전 | 2461 | ||
| 4443 | PHP | 8년 전 | 2721 | ||
| 4442 | PHP | 8년 전 | 2811 | ||
| 4441 | PHP | 8년 전 | 2510 | ||
| 4440 | 기타 | 8년 전 | 2646 | ||
| 4439 | OS |
프로그래머7
|
8년 전 | 2653 | |
| 4438 | 기타 |
프로그래머7
|
8년 전 | 2577 | |
| 4437 | OS |
프로그래머7
|
8년 전 | 3088 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기