// Type
<button type="submit" value="1">button1</button>
<button type="button" disabled>button2</button>
<button type="reset" autofocus>button3</button>
type="submit" ?
value=" "
: type이 submit일 때 초기값name=" "
: type이 submit일 때 버튼 이름type="reset" ?
type="button" ?
disabled ?
autofocus ?
<input type="text"> // 텍스트 박스
<input type="checkbox"> // 체크 박스
<input type="color"> // 색 지정할 수 있는 컨트롤
<input type="date"> // 날짜 지정할 수 있는 컨트롤
<input type="email"> // 이메일 주소 편집 가능, 유효성 검증 매개변수 존재
<input type="file"> // 파일을 지정할 수 있는 컨트롤
<input type="number"> // 숫자 입력하는 컨트롤
<input type="image"> // image input
<input type="radio"> // 같은 값을 가진 여러개의 선택지중에서 한개만 선택 가능
<input type="submit"> // 양식 전송하는 버튼
😍 코드 지적은 언제나 환영입니다. 읽어주셔서 감사합니다. 😍