프로그래밍언어/Html & Css
HTML select 태그 사용시 기본값 설정방법
D.Y
2019. 6. 3. 14:37
반응형
HTML의 select 태그 사용시 기본값을 설정하는 방법
예제
```
< select className="select-box" onChange={this.onChange.bind(this)}>
< option value="" selected disabled hidden >선택해주세요.< /option>
< option value="1" >아빠< /option>
< option value="2" >엄마< /option>
< /select >
```
반응형