반응형
이와같은 textarea를 리액트에서 사용하려면 몇개 속성을 수정해줘야한다.
<label for="story">Tell us your story:</label>
<textarea id="story" name="story"
rows="5" cols="33">
It was a dark and stormy night...
</textarea>
이와같은 녀석을
<label htmlFor="story">Tell us your story:</label>
<textarea onChange={handleDes} id="story" name="story"
rows={5} cols={33}>
</textarea>
아래와 같이 바꿔서 써줘야한다.
rows와 cols는 {}안에 속성값을 넣어줘야하고
for같은거는 htmlFor로 바꿔써줘야 한다.
- 참고한링크
https://developer.mozilla.org/ko/docs/Web/HTML/Element/textarea
https://www.pluralsight.com/guides/how-to-use-multiline-text-area-in-reactjs
https://velog.io/@solmii/TIL-HTML%EC%9D%98-input-textarea-15hm8sqe
https://www.codingfactory.net/11611
반응형
'React' 카테고리의 다른 글
react에서 axios를 이용해 fomdata전송하기(문자열, 이미지) (0) | 2022.04.27 |
---|---|
리액트 조건문 (0) | 2022.04.27 |
axios 여러개 요청하기 (멀티 리퀘스트) (0) | 2022.04.02 |
useWindowSize Hook, 반응형 NavBar,Footer (0) | 2022.04.02 |
Mui 스타일 설정 (0) | 2022.03.31 |