그룹 이벤트 등록 메서드- on()

imjingu·2023년 7월 25일
0

개발공부

목록 보기
210/481

그룹 이벤트 등록 메서드
대상에 한 가지 이상의 이벤트를 등록 할 수 있음.
on() 메서드를 사용해서 이벤트를 등록.

기본형
1) on() 메서드 등록 방식: 매개변수르 전달
$('이벤트 대상 선택').on('이벤트종류1 이벤트종류2 ...', function() {
자바스크립트 코드;
})

2) on() 매서드 등록 방식 : 객체로 전달
$('이벤트 대상 선택').on({'이벤트종류1 이벤트종류2 ...': function() {
자바스크립트 코드;
}
});

3) on() 메서드 등록 방식 : 객체로 전달
$('이벤트 대상 선택').on({
'이벤트종류1': function() {자바스크립트 코드;},
'이벤트종류2': function() {자바스크립트 코드;},
...
})

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
    <title>Document</title>
    <script>
        

        $(function() {
            $('.btn1').click(function() {
                $('.btn1').parent().next().css({color:'red'}); // 버튼1클릭시 btn1의 부모요소 다음 요소 내용1 에 css 적용
            });

            $('.btn2').on({
                'mouseover focus': function() { // 마우스를 올리면
                    $('.btn2').parent().next().css({color : 'lime'}); // btn의 부모요소 다음 요소에 css 적용
                },
                'mouseout blur': function() { // 마우스를 빼면
                    $('.btn2').parent().next().css({color: 'black'}); // btn의 부모요소 다음 요소에 css 적용
                },
            });
        });
    </script>
</head>
<body>
    <p>
        <button class="btn1">버튼1</button>
    </p>
    <p>내용1</p>

    <p>
        <button class="btn2">버튼2</button>
    </p>
    <p>내용2</p>
</body>
</html>

0개의 댓글