반응형

 

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<style>

</style>
<body>
    <button id ="btn" style ="padding:10px"></button>
    <script>
        var btn = document.getElementById('btn');

        function setColor(){
            this.style.backgroundColor = '#333';
            this.style.color = 'orange';
        }

        btn.addEventListener('click',setColor);

    </script>
</body>
</html>

이와 같이 함수 정의를 따로 적어주는걸 이벤트 바인딩이라고합니다.

btn.addEventListner를 보시면 setColor를 안에서 적지 않고 밖에다 적어줬다

반응형