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
- 실습
- 개념
- gns3
- kubernetes
- RAPA
- PaaS
- 네트워크
- nodejs
- IaaS
- Docker Swarm
- express
- MongoDB
- OpenStack
- 이론
- dockerfile
- Javascript
- Docker-compose
- network
- 명령어
- 클라우드
- node.js
- 도커
- docker
- PAT
- git
- 용어정리
- RAID
- mysql
- worker
- 쿠버네티스
Archives
- Today
- Total
융융이'Blog
REACT_핸들링 본문
REACT에서 지원하는 이벤트 종류
- Clipboard
- Composition
- Keyboard
- Focus
- Form
- Mouse
- Selection
- Touch
- UI
- Image
- Wheel
- Animation
- Media
- Transition
import React, {Component} from 'react';
class EventPractice extends Component {
state = {
message: ""
}
constructor(props){
super(props);
this.handleChange = this.handleChange.bind(this);
this.handleClick = this.handleClick.bind(this);
}
//값이 변화할 때
handleChange(e){
this.setState({
message: e.target.value
});
}
//클릭했을때
handleClick(){
alert(this.state.message);
this.setState({
message: ''
});
}
//키를 눌렀을 때
handleKeyPress= (e) => {
if(e.key === 'Enter'){
this.handleClick();
}
}
render(){
return(
<div>
<h1>이벤트 연습</h1>
<input
type="text"
name="message"
placeholder="아무거나 입력해보세요"
value={this.state.message}
onChange={this.handleChange}
/>
<button onClick={this.handleClick}>
확인
</button>
</div>
);
}
}
export default EventPractice;
해당하는 input의 name을 이용하고싶은때는
handleChange(e){
this.setState({
[e.target.name]: e.target.value
});
}
[]과 target.name을 이용하여 사용해주면 된다.
'2022이전 > React' 카테고리의 다른 글
REACT_styled-components (0) | 2020.01.22 |
---|---|
REACT_함수형 컴포넌트 (0) | 2020.01.22 |
REACT_컴포넌트 라이프사이클 (0) | 2020.01.22 |
REACT_배열 mapping & key (0) | 2020.01.22 |
리액트 이해 (0) | 2020.01.22 |