P

jQuery w3schools 한글판 강좌23 - Commonly Used jQuery Event Methods - on() 메소드

· 2017-03-14 (화) 00:05:15 · 3636

 jQuery w3schools 한글판 강좌23 - Commonly Used jQuery Event Methods - on() 메소드

 

The on() Method

on() 메소드는 선택된 요소들에 대한 한개 이상의 이벤트 핸들러를 붙여준다

 

click 이벤트를  한개의 <p>요소에 붙이는 예:

 

Example

$("p").on("click", function(){
    $(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");
    } 
});

 

 

|
댓글을 작성하시려면 로그인이 필요합니다.

개발자팁

5,403건

개발과 관련된 유용한 정보를 공유하세요. 질문은 QA에서 해주시기 바랍니다.

+
분류 제목 글쓴이 날짜 조회
jQuery 17-03-18 조회 2,807
jQuery 17-03-18 조회 2,383
PHP 17-03-18 조회 4,407
jQuery 17-03-17 조회 2,255
jQuery 17-03-17 조회 2,298
jQuery 17-03-17 조회 2,154
jQuery 17-03-17 조회 3,156
PHP 17-03-16 조회 2,413
PHP 17-03-16 조회 2,245
PHP 17-03-16 조회 2,451
기타 17-03-16 조회 1.6만
OS 17-03-16 조회 3,531
jQuery 17-03-15 조회 2,589
jQuery 17-03-15 조회 2,653
jQuery 17-03-15 조회 2,756
jQuery 17-03-14 조회 2,549
jQuery 17-03-14 조회 2,680
jQuery 17-03-14 조회 3,637
PHP 17-03-13 조회 2,593
PHP 17-03-13 조회 2,386
PHP 17-03-13 조회 2,653
PHP 17-03-11 조회 2,379
PHP 17-03-11 조회 3,061
PHP 17-03-11 조회 2,735
jQuery 17-03-11 조회 2,727
jQuery 17-03-11 조회 2,827
jQuery 17-03-11 조회 2,250
jQuery 17-03-10 조회 2,260
jQuery 17-03-10 조회 2,255
jQuery 17-03-10 조회 2,629