티스토리 뷰
* radio
- 선택지 중에 한가지만 고를 수 있다.
- 연관된 선택지의 경우 name을 일치시키며 각 선택지에대한 value값을 부여한다.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>Form</title>
</head>
<body>
<form action="" method="POST">
<input
type="radio"
name="subscription"
value="1"
id="subscription"
/>
<label for="subscription">구독</label>
<input
type="radio"
name="subscription"
value="0"
id="unsubscription"
/>
<label for="unsubscription">미구독</label>
<button>확인</button>
</form>
</body>
</html>
* checkbox
- 선택지중 다중선택이 가능하다.
- radio와 마찬가지로 연관된 선택지의 경우 name을 일치시키며 각 선택지에 value값을 부여한다.
<!DOCTYPE html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<title>Form</title>
</head>
<body>
<form action="" method="POST">
<input type="checkbox" name="checkbox" value="1" id="apple" />
<label for="apple">사과</label>
<input type="checkbox" name="checkbox" value="2" id="banana" />
<label for="banana">바나나</label>
<input type="checkbox" name="checkbox" value="3" id="melon" />
<label for="melon">메론</label>
<button>확인</button>
</form>
</body>
</html>
'HTML' 카테고리의 다른 글
Form - textarea (0) | 2021.08.16 |
---|---|
Form - select & option (0) | 2021.08.16 |
Form - input & label (0) | 2021.08.16 |
Form 태그란? (0) | 2021.08.16 |
Anchor (링크) & Image (0) | 2021.08.16 |
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 리액트
- axios
- 노드JS
- VanillaJS
- 개발자회고
- JavaScript
- font-family
- react
- inline
- nodejs
- 프론트엔드면접
- vue3
- function
- postman
- node.js
- cssom
- HTML
- 생활코딩
- vue입문
- CSS
- vue
- 오물오물
- 프론트엔드회고
- 공공데이터포털
- INPUT
- CORS
- 공공데이터
- baegofda
- 프론트엔드
- vue예제
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함