개발의 시작과 끝
2021.02.09 / React - 이벤트 본문
생활코딩 16.2강 - 이벤트 설치
HTML 태그들에 대해 이벤트를 걸 때 이벤트 태그가 가지고 있는
기본적인 동작 방법을 하지 못하게 해야 할 때가 있다.
그때 사용하는 명령어가 e.preventDefault(); 이다.
<header>
<h1><a href="/" onClick={function(e){
console.log(e);
e.preventDefault(); // 기본적인 동작방법을 못하게 하는것
}}>{this.state.subject.title}</a></h1>
{this.state.subject.sub}
</header>
참고
- www.youtube.com/watch?v=3h7MidkDTBU&list=PLuHgQVnccGMCRv6f8H9K5Xwsdyg4sFSdi&index=20
'리액트' 카테고리의 다른 글
2021.02.10 / React - create : contents (0) | 2021.02.10 |
---|---|
2021.02.09 / React - 이벤트 bind, setState (4) | 2021.02.09 |
2021.02.09 / React - render (0) | 2021.02.09 |
2021.02.09 / React - key (0) | 2021.02.09 |
2021.02.09 / React - state (4) | 2021.02.09 |