select : 목록 선택상자
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 | <!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> <select> <!-- optgroup : 항목의 레이블 적용 --> <!-- option : 선택할 항목 --> <optgroup label="포탈"> <!-- value : 데이터 전송시 전송되는 값 selected : 페이지 로드시 미리 선택되어 보여지는 항목 --> <option value="www.naver.com" selected="selected">네이버</option> <option value="www.nate.com">네이트</option> <option value="www.daum.net">다음</option> </optgroup> </select> </body> </html> | cs |
결과
'IT > - 프로그래밍' 카테고리의 다른 글
HTML5/CSS3 video : 동영상 파일 재생하기 (0) | 2017.07.02 |
---|---|
HTML5/CSS3 embed : url로 된 동영상 재생하기 (0) | 2017.07.01 |
HTML5/CSS3 textarea : 텍스트 여러줄 입력하기 (0) | 2017.06.29 |
HTML5/CSS3 radio : 단일선택 예제 (0) | 2017.06.28 |
HTML5/CSS3 checkbox : 다중선택 예제 (0) | 2017.06.27 |