이벤트
이벤트 핸들링
이벤트 핸들러
예제
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>버튼 클릭 이벤트</title>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<h2 id="title">정답일까?</h2>
<button id="grade">채점</button>
<script src="index.js"></script>
</body>
</html>
const btn = document.querySelector('#grade');
console.log(btn);
btn.onclick = () => alert('정답입니다.');
이벤트 핸들러를 등록하는 다른 방법
<button id="grade" onclick="alert('정답입니다.')">채점</button>
Tomorrow better than today, Laugh at myself
- 출처 -