Menu



Manage

파일 목록
Study_Web > 이후/test9_3.html Lines 31 | 924 바이트
다운로드

                        <!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>
    <script>
        let p;
        function init() { // 문서가 완전히 로드되었을때 호출
            p = document.getElementById("p");
            p.addEventListener("mouseover", over); // 이벤트 리스너
            p.addEventListener("mouseout", out); // 이벤트 리스너
        }
        function over() {
            p.style.backgroundColor = "orchid";
        }
        function out() {
            p.style.backgroundColor = "white";
        }
    </script>
</head>

<body onload="init()">
    <h3>addEventListener()를 이용한 리스너등록</h3>
    <hr>
    <p id="p">마우스 올리면 orchid 색으로 변경</p>
</body>

</html>