728x90
Button
- type 속성을 적어줘야함
- type 속성에 button, submit, reset 3가지 속성이 있음
- 클릭 용도르는 button
- form 을 제출할 때는 submit 을 씀
- reset 을 누르면 입력창이 지워짐. 잘 안쓰임
<form action="" method = "GET">
<input type="text">
<!-- 타입 : button -->
<button type="button">
버튼
</button>
<!-- 타입 : submit -->
<button type="submit">
제출
</button>
<!-- 타입 : reset -->
<button type="reset">
리셋
</button>
</form>
728x90
'HTML CSS' 카테고리의 다른 글
[HTML] 미디어 파일 Media (0) | 2021.08.31 |
---|---|
[HTML] Table (0) | 2021.08.27 |
[HTML] Form(5)- Textarea (0) | 2021.08.22 |
[HTML] Form(4)- Select & Option (0) | 2021.08.22 |
[HTML] Form(3)- Radio & Checkbox (0) | 2021.08.22 |