<!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>
<body>
<button id = "btn">클릭!</button>
<script>
// Callback 함수
// 어떤 이벤트가 발생했거나, 특정 시점에 도달했을 때
// 시스템에서 호출하는 함수
// 함수에 파라미터로 들어가는 함수
// 1. 이벤트 핸들러 & 리스너
// 어떤 이벤트가 발생했을 때 : addEventListner()
document.getElementById('btn').addEventListener('click',function(){
console.log('click')
})
// 타임핸들러
// 의도적으로 시간 지연을 사용하는 기능 : setTimeout()
console.log(1)
setTimeout(function(){console.log(2)},2000)
console.log(3)
</script>
</body>
</html>
'자바 스크립트' 카테고리의 다른 글
스타일 및 이미지 실습 (0) | 2022.05.18 |
---|---|
querySelector 실습 (0) | 2022.05.18 |
DOM 실습 (0) | 2022.05.17 |
DOM : Document Object Model (0) | 2022.05.17 |
객체(Object) (0) | 2022.05.13 |