Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 알고리즘
- 초보자가 주의해야 할 운동 부상과 예방법
- 요가 자세
- 숏폼 중독 해결
- 운동에 안좋은 음식
- 초보 운동장비
- 초보자 운동
- 홈트(홈트레이닝)와 헬스장 운동 비교
- 홈트레이닝 헬스장
- 초보자 7가지 운동
- 요가 입문자
- 요가 기본 자세
- 초보자 부상 예방
- 운동 영양 가이드
- 기본 운동 장비
- 운동 식습관
- 2024 장비트렌드
- 일상생활 균형잡기
- 런지 기본 자세
- 요가 수련 팁
- 백준
- 요가 기본자세
- 초보자 운동 부상
- 숏폼 극복
- 백준문제
- 운동 시작 전후 올바른 식습관과 영양 섭취 가이드
- 초보자 부상
- 요가 기본
- 운동 초보자 부상방지
- 서울시 전세
Archives
- Today
- Total
정보 나눔
Select 안에 Select 넣기 본문
반응형
CSS 없이 간단하게 표현 하도록 하겠습니다.
<!DOCTYPE html> <html lang="ko"> <head> <meta charset="UTF-8"> <title>select</title> </head> <body> <table class="type02"> <thead> <tr> <th>도/시</th> <th>군/구</th> <th>읍/면/동</th> <th>조회</th> <tr> <tr> <td> <select id="FoodCombo" name="select-native-1" onchange="FoodComboSelect()"> <option value="0" selected>선택하기</option> <option value="음식">음식</option> <option value="간식">간식</option> </select> </td> <td> <select id="Food2Combo" onchange="Food2ComboSelect()"> <option value="0" selected>전체선택</option> </select> </td><td> <select id="Food3Combo"> <option value="0" selected>전체선택</option> </select> </td> <td> <input type="button" value="조회하기"> </td> </tr> </thead> </table> <script src="select.js"></script> </body> </html> |
반응형
'프로그래밍(programming)' 카테고리의 다른 글
02.순환-(2) (0) | 2019.05.24 |
---|---|
02.순환-(1) (0) | 2019.05.17 |
01.자료 구조와 알고리즘-(3) (0) | 2019.05.14 |
01.자료 구조와 알고리즘-(2) (0) | 2019.05.09 |
01.자료 구조와 알고리즘-(1) (0) | 2019.05.07 |
Comments