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
- Prototype
- css 오버레이
- close together
- node
- improve-iq-by-up-to-10%!
- css
- Sass
- ajax
- es6
- css variables
- flex-shrink
- Object.create
- flexbox
- 무료 백엔드 배포
- select by attribute
- Node.js
- module wrapper function
- JS
- flex-basis
- shit-christmas
- 디자인패턴
- css grid
- express-handlebars
- just-one-small-sip
- regExp
- img 확대
- 정규표현식
- Express
- flex-grow
- Engoo
Archives
- Today
- Total
목록delegation (1)
Event Bubbling & Delegation
Event Bubbling 어떤 요소의 이벤트 핸들러가 동작할 때 그 요소의 상위, 더 나아가 최상단 요소의 핸들러까지 동작해버리는 현상을 이야기 한다. // Event Bubbling card-title을 클릭했지만 아래 모든 핸들러가 전부 동작해버림 document.querySelector(".card-title").addEventListener("click", function(e) { console.log("card title"); }); document.querySelector(".card-content").addEventListener("click", function(e) { console.log("card content"); }); document.querySelector(".card").ad..
2021 프론트 엔드 로드맵 따라가기/JS
2021. 5. 31. 17:16