-
Notifications
You must be signed in to change notification settings - Fork 0
/
test6.html
84 lines (74 loc) · 3.79 KB
/
test6.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
81
82
83
84
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<!--서버로 보내기 위해서는 form으로 묶어줘야 한다.-->
<form>
<!--문자를 입력받을 수 있는 테그 : input-->
<input type="text"/><br/>
<input type="text" size="30" maxlength="15"/><br/>
<input type="text" value="가나다"/><br/><br/>
<input type="text" placeholder="여기에 이름을 입력하세요"/><br/><br/>
<!--로그인 창에 아이디, 비밀번호 입력처럼 흐릿하게
워터마크가 나오게끔 하는 것-->
<input type="text" disabled="disabled"/><br/><br/>
<input type="text" readonly="readonly"/><br/><br/>
<input type="password"/><br/><br/>
<textarea rows="5" cols="30"></textarea><br><br>
<!--5줄까지 입력할 수 있는 입력창을 나타나냄-->
<!--선택에 따른 입력
name="r1" 이런식으로
같은 이름으로 묶어줘야 둘중에 하나만 선택이 가능하다.
안그러면 중복 선택이 가능하게 됨-->
<input type="radio" name="r1"/>첫 번째 라디오<br>
<input type="radio" name="r1"/>두 번째 라디오<br>
<br/>
<!--checkbox는 자체적으로 해제가 가능하다.
이름을 묶어주는게 좋다. 왜냐하면 서로 관련된 데이터기 때문이다.
추후 백엔드 작업을 할 때도 이렇게 해야 훨씬 편하다.-->
<!--글자를 눌러도 체크가 될 수 있도록 하려면 어떻게 해야할까?-->
<!--이런식으로 <label>테그를 활용해서 묶어주고, id를 활용한다음에 label for ='아이디'를 입력해주면 된다.-->
<input type="checkbox" name="r2" id="c1"/> <label for="c1">첫번째 체크박스</label><br>
<input type="checkbox" name="r2"/> <label>두번째 체크박스</label><br>
<input type="checkbox" name="r2"/> <label>세번째 체크박스</label><br>
<br><br><br>
<!--단일선택과 다중선택이 모두 가능하게 하려면?
selected 속성을 지정하면 제일 먼저 보여지는 값으로 나타난다.-->
<select>
<option>서울</option>
<option selected="selected">경기</option>
<option>인천</option>
<option>강원</option>
<option>제주</option>
</select>
<br><br><br>
<!--셀렉트를 다 보이게 하기 위해서는 size 숫자를 늘리면 된다.
multiple을 사용하면 다중선택도 된다.-->
<select size ="5" multiple="multiple">
<option>서울</option>
<option selected="selected">경기</option>
<option>인천</option>
<option>강원</option>
<option>제주</option>
</select>
<br><br><br>
<!--여러줄 코드를 한번에 들여쓰기 하려면 블럭 지정후 탭 하면 된다.-->
<!--버튼 관련-->
<input type="button" value="버튼"/><br>
<input type="image" src="images/duke_flip.gif"/><br>
<input type="submit" value="전송"/><br> <!--submit 버튼을 누르면 서버로 데이터가 전송된다.-->
<input type="reset" value="취소"/><br> <!--reset 버튼을 누르면 데이터 전송이 취소된다.-->
<button>전송</button>
<br/>
<hr/>
<!--파일을 업로드 할 수 있도록 해주는 버튼-->
<input type="file"/><br/>
<!--보이지는 않지만 서버로 전송되는 번호-->
<input type="hidden" name="sn" value="123456"/>
</form>
</body>
</html>