사용자와 상호작용이 가능한 JS!
<!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>
<input type="button" value="hi" onclick="alert('hi')" />
<input type="text" onchange="alert('changed')" />
<input type="text" onkeydown="alert('key down!')" />
</body>
</html>
'JS > learned_it_today' 카테고리의 다른 글
객체 - 쓰기와 읽기 (0) | 2020.05.19 |
---|---|
배열과 반복문 활용 (0) | 2020.05.19 |
배열과 반복문 (0) | 2020.05.19 |
조건문의 활용 + refactoring (0) | 2020.05.19 |
HTML과 JavaScript의 만남 (script 태그) (0) | 2020.05.18 |