본문 바로가기

Javascript

이벤트 리스너에서 이벤트 객체 전달 받기.html

아래에 화면 결과 있어요

 

마우스를 올리면 아래의 화면 결과로

 

경고창이 뜹니다. 확인 누르고 버튼을 누르면 아래의 화면 결과로

 

아래에 코드있어요

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
</head>
<body>
    <p id="p">마우스를 올려 보세요</p>
    <button onclick="f(event)">클릭하세요</button><!--이벤트 리스너-->
    <script>
        function f(e){
            alert(e.type);
        }
        //p태그에 마우스가 over될 때 f함수 등록
        document.getElementById("p").onmouseover = f;
    </script>
</body>
</html>