일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- #클릭#숨기기#보이기
- #C언어#성적처리#점수#등급
- #getElementById#id
- #C언어#if
- #html#프레임
- #alert#자바스크립트#checkbox#alert
- #db#데이터베이스#select
- #증감#연산자
- #C언어#타입#printf
- #자바스크립트#접속시간#시간
- #C언어#do#while#계산기#함수
- #alert#자바스크립트#radio#check
- #C언어#switch#case#계산기#함수
- #db#where
- #db#froup#by
- #C언어#do#while#계산기
- #C언어#사각형
- #db#order#by
- #C언어#scanf#fflush
- #자바스크립트#만년달력#달력
- #jQuery#mouse#over
- #자바스크립트#회원가입#유효성#검사
- #자바스크립트#텍스트#알람#alert
- #C언어#for#간단#예제
- #자바스크립트#alert
- #자바스크립트#시계#실시간시계
- #select#from#distinct
- #C언어#숫자비교#삼항연산자
- #db#join#inner#cross
- #html#테이블#table
- Today
- Total
선택장애
HTML - 라디오버튼, 체크박스, select option 본문
<input type="radio" name="memory" value="1">asdf<br>
<input type="radio" name="memory" value="2">as<br>
<input type="radio" name="memory" value="3" checked>adf<br>
<input type="radio" name="memory" value="4">f<br>
//////라디오 버튼은 하나씩 클릭이 된다.
<input type="checkbox" name="computer" value="5">asdf<br>
<input type="checkbox" name="computer" value="6">as<br>
<input type="checkbox" name="computer" value="7">adf<br>
<input type="checkbox" name="computer" value="8">f<br>
/////// 체크박스는 여러개 체크할 수 있다.
<select name="item1">
<option value="html">html</option>
<option value="자바">자바</option>
<option value="css">css</option>
</select>
<select name="item2" size="3">
<option value="html">html</option>
<option value="자바">자바</option>
<option value="css">css</option>
</select>
////// select option은 여러개 리스트를 보여준다.
'HTML' 카테고리의 다른 글
HTML - onclick으로 alert띄우기 (0) | 2022.05.02 |
---|---|
HTML - 이미지 띄우기 (img src) (0) | 2022.05.02 |
테이블 비율이 안 맞을 때 (colgroup, th, td) (0) | 2020.09.17 |
HTML - 프레임 (0) | 2017.08.14 |
HTML - 테이블 간단예제 (0) | 2017.08.14 |