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 |
Tags
- CSS
- togle
- position : fixed
- css selector
- JQuery
- form
- hover
- margin
- navbar
- css animation
- display:none
- 레이아웃
- input
- TRANSITION
- absolute
- float : left
- 밀리초
- z-index
- Position
- EventListner
- bootstrap
- animate
- vw
- 이벤트 버블링
- val()
- Carousel
- scss
- setTimeout
- transform
- sass
Archives
- Today
- Total
목록e.preventDefault (1)
Simple Is Best

안녕하세요 이번 포스팅에서는 이벤트 버블링 및 여러가지 이벤트 메소드에 대해서 학습해보도록 하겠습니다. 이벤트 메소드 이벤트 리스너를 달았을 때 파라미터로 e 혹은 event를 주어서 할 수 있는 동작들 입니다. 예시를 위해서 폼 HTML 을 가져왔습니다. HTML Sign in Email Address Password Submit Cancel ▷ e.target : user 가 실제로 클릭한 요소를 알려주는 메소드 $('.black-background').click(function(e){ console.log(e.target); // 실제 user가 클릭한 요소를 html 태그로 알려준다. }) User가 white-background를 클릭하면 e.target은 white-background 에 해당..
JavaScript & JQuery
2021. 8. 2. 14:34