일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- SQL
- 다익스트라
- MYSQL
- 이진탐색
- Stored Procedure
- Trie
- Hash
- Dijkstra
- binary search
- DP
- 스토어드 프로시저
- Two Points
- union find
- Brute Force
- String
- 그래프
- two pointer
Archives
- Today
- Total
codingfarm
radio, checkbox 본문
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<html>
<head>
<meta charset="utf-8">
</head>
<body>
<form action="http://localhost/order.php">
<p>
<h1>색상(단일선택)</h1>
붉은색 : <input type="radio" name="color" value = "red">
검은색 : <input type="radio" name="color" value = "black" checked>
파란색 : <input type="radio" name="color" value = "blue">
</p>
<p>
<h1>사이즈(다중선택)</h1>
95 : <input type="checkbox" name="size" value = "95">
100 : <input type="checkbox" name="size" value = "100" checked>
105 : <input type="checkbox" name="size" value = "105" checked>
</p>
<input type="submit">
</form>
</body>
</html>
|
cs |
radio
동시에 누를 수 있는 버튼이 하나가 전부
checkbox
동시에 여러가지 버튼을 누를 수 있다.
위 HTML파일을 브라우저로 열면 아래와 같은 모습으로 나온다.
질의 보내기를 누르면 아래 링크로 이동한다.
http://localhost/order.php?color=black&size=100&size=105
Comments