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에서 해주시기 바랍니다.
| 번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 |
|---|---|---|---|---|---|
| 4526 | PHP | 8년 전 | 1960 | ||
| 4525 | PHP | 8년 전 | 1811 | ||
| 4524 | PHP | 8년 전 | 1974 | ||
| 4523 | 기타 |
프로그래머7
|
8년 전 | 14774 | |
| 4522 | OS |
프로그래머7
|
8년 전 | 3027 | |
| 4521 | jQuery |
프로그래머7
|
8년 전 | 2112 | |
| 4520 | jQuery |
프로그래머7
|
8년 전 | 2211 | |
| 4519 | jQuery |
프로그래머7
|
8년 전 | 2323 | |
| 4518 | jQuery |
프로그래머7
|
8년 전 | 2082 | |
| 4517 | jQuery |
프로그래머7
|
8년 전 | 2233 | |
| 4516 | jQuery |
프로그래머7
|
8년 전 | 3181 | |
| 4515 | PHP | 8년 전 | 2098 | ||
| 4514 | PHP | 8년 전 | 1877 | ||
| 4513 | PHP | 8년 전 | 2171 | ||
| 4512 | PHP | 8년 전 | 1931 | ||
| 4511 | PHP | 8년 전 | 2657 | ||
| 4510 | PHP | 8년 전 | 2351 | ||
| 4509 | jQuery |
프로그래머7
|
8년 전 | 2240 | |
| 4508 | jQuery |
프로그래머7
|
8년 전 | 2370 | |
| 4507 | jQuery |
프로그래머7
|
8년 전 | 1741 | |
| 4506 | jQuery |
프로그래머7
|
8년 전 | 1778 | |
| 4505 | jQuery |
프로그래머7
|
8년 전 | 1790 | |
| 4504 | jQuery |
프로그래머7
|
8년 전 | 2165 | |
| 4503 | PHP | 8년 전 | 2291 | ||
| 4502 | PHP | 8년 전 | 2155 | ||
| 4501 | PHP | 8년 전 | 2411 | ||
| 4500 | jQuery |
프로그래머7
|
8년 전 | 1832 | |
| 4499 | jQuery |
프로그래머7
|
8년 전 | 1774 | |
| 4498 | jQuery |
프로그래머7
|
8년 전 | 1657 | |
| 4497 | PHP | 8년 전 | 1658 |
댓글 작성
댓글을 작성하시려면 로그인이 필요합니다.
로그인하기