radio : 단일선택 예제



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
<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <meta name="viewport" 
          content="width=device-width, height=device-height, 
                     minimum-scale=1.0, maximum-scale=1.0, initial-scale=1.0">
    <title>Insert title here</title>
</head>
 
<body>
    <p>
        <!-- label의 for 속성값과 id 값을 같게하여 연결해준다 -->
        <!-- 
        checked : 페이지 로드시 미리 체크가 되어 있도록 한다
        value : 데이터 전송시 전달되는 값
        name : name이 같은 여러 라디오 버튼 중 하나를 선택한다
         -->
        <label for="man">남자</label>
        <input type="radio" id="man" name="gender" value="남자" checked  />
    </p>
    <p>
        <label for="woman">여자</label>
        <input type="radio" id="woman" name="gender" value="여자"  />
    </p>
</body>
</html>
cs



결과

+ Recent posts