-
Notifications
You must be signed in to change notification settings - Fork 0
/
html-form.html
80 lines (71 loc) · 2.6 KB
/
html-form.html
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>form</title>
</head>
<body>
<!-- Form 요소 -->
<!-- 사용자로부터 입력을 받아 특정한 리소스로 요청을 보낼 때-->
<!-- 사용되는 요소-->
<form action="" autocomplete="off">
<input name = "id" />
<input name = "password"/ >
<button type = "submit"> 로그인</button>
</form>
<br />
<!-- Form의 속성 -->
<!-- action / method -->
<!-- action : Form을 제출 할 때 어떠한 리소스로 제출할 것인지-->
<!-- method : Form을 제출 할 때 어떠한 방식(get, post)으로 제출할 것인지-->
<!-- GET 방식 : 데이터를 URL에 담아서 전송 -> Request Header의 UIRL에 담겨서 감-->
<!-- POST 방식: 데이터를 숨겨서 전송 -> Request Body에 담겨서 감 -->
<form action="http://naver.com" method="GET">
<input name="data" />
<button type="submit" > GET 전송</button>
</form>
<br />
<form action="http://naver.com" method="POST">
<input name="data" />
<button type="submit" > POST 전송</button>
</form>
<br />
<!-- Form Button-->
<form>
<input name="first" />
<input name ="second" />
<!-- submit : form을 action에 method 방식으로 요청을 보내는 형식-->
<button type = "submit" >제출 </button>
<input type ="submit" value ="인풋 제출" />
<!-- reset : form의 input value 들을 초기값으로 변경-->
<button type="reset"> 초기화</button>
<input type="reset" value ="인풋초기화" />
</form>
<!-- Field set 요소-->
<!-- form의 field 들을 그룹화 지어주는 요소-->
<!-- label 요소-->
<!-- form의 요소에 라벨을 달아주는 요소-->
<!-- label 요소의 for속성에 form의 요소의 id속성 값을 -->
<!-- 지정하면 해당 label 요소와 form의 요소가 연결-->
<form>
<fieldset>
<legend>예약정보</legend>
<label for="reservation_input">예약일</label>
<input type ="date" id = "reservation_input"/>
</fieldset>
<fieldset>
<legend>예약자 정보</legend>
<input />
<input />
</fieldset>
</form>
<br />
<input type="text">
<input type="checkbox">
<input type="radio">
<input type="number">
<input type="range">
</body>
</html>