Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- close together
- express-handlebars
- flex-basis
- improve-iq-by-up-to-10%!
- css 오버레이
- css
- Express
- ajax
- node
- flexbox
- css variables
- img 확대
- flex-shrink
- Node.js
- Engoo
- just-one-small-sip
- Sass
- regExp
- Object.create
- select by attribute
- 디자인패턴
- css grid
- Prototype
- module wrapper function
- shit-christmas
- 정규표현식
- flex-grow
- 무료 백엔드 배포
- es6
- JS
Archives
- Today
- Total
Key & Input events 본문
const form = document.querySelector("form");
const taskInput = document.getElementById("task");
const heading = document.querySelector("h5");
const select = document.querySelector("select");
// Clear input
taskInput.value = "";
// form.addEventListener("submit", runEvent);
// Keydown
// taskInput.addEventListener("keydown", runEvent);
// Keyup
// taskInput.addEventListener("keyup", runEvent);
// Keypress
// taskInput.addEventListener("keypress", runEvent);
// Focus
// taskInput.addEventListener("focus", runEvent);
// Blur
// taskInput.addEventListener("blur", runEvent);
// Cut
// taskInput.addEventListener("cut", runEvent);
// Paste
// taskInput.addEventListener("paste", runEvent);
// Input => 쓰고 지우고 되돌리고 복사하고 붙여넣고 잘라낼 때마다 동작
// taskInput.addEventListener("input", runEvent);
// Change
select.addEventListener("change", runEvent);
function runEvent(e) {
// e.preventDefault();
console.log(`EVENT TYPE: ${e.type}`);
console.log(e.target.value);
heading.innerText = e.target.value;
// console.log(taskInput.value);
}
'2021 프론트 엔드 로드맵 따라가기 > JS' 카테고리의 다른 글
Local Storage & Session (0) | 2021.06.01 |
---|---|
Event Bubbling & Delegation (0) | 2021.05.31 |
Mouse events (0) | 2021.05.31 |
Replace & Remove Elements (0) | 2021.05.31 |
Creating Elements (0) | 2021.05.31 |
Comments