- Today
- Total
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Link
- 재능이의 돈버는 일기
- StresslessLife
- K_JIN2SM
- 소소한 일상
- My Life Style & Memory a Box
- Blog's generation
- 공감 스토리
- 취객의 프로그래밍 연구실
- Love Me
- Dream Archive
- 세상에 발자취를 남기다 by kongmingu
- hanglesoul
- 카마의 IT 초행길
- 느리게.
- 미친듯이 즐겨보자..
- Joo studio
- Gonna be insane
- 악 다 날아갔어!! 갇대밋! 왓더...
- xopowo05
- 맑은공기희망운동
- 엔지니어 독립운동
- 혁준 블로그
- Simple in Complex with Simple
- 무의식이 의식을 지배한다
드럼치는 프로그래머
[JavaScript] select box에서 선택한 값 가져오기 본문
휴.. 뭐 하나 할 때마다 이렇게 시간이 걸리누 ㅠㅜ
역시 기초가 중요하다..
뭐 여기도 바로 사용할 수 있는 코드만 올리겠다.
<script language="javascript">
function setValues(){
var sh = document.getElementById("selectHours");
var tt = document.getElementById("textTime");
tt.value = sh.options[sh.selectedIndex].text;
}
< /script>
<select id="selectHours" size="1" onChange="setValues();">
<option value="1">test_1</option>
<option value="2">test_2</option>
< /select>
< input type="text" id="textTime">
function setValues(){
var sh = document.getElementById("selectHours");
var tt = document.getElementById("textTime");
tt.value = sh.options[sh.selectedIndex].text;
}
< /script>
<select id="selectHours" size="1" onChange="setValues();">
<option value="1">test_1</option>
<option value="2">test_2</option>
< /select>
< input type="text" id="textTime">
뭐 길게 설명할 것도 없을 것 같다.
이해 하기 쉽게 색깔로 분류를 해두었다.
[출처] http://imhotk.tistory.com/524
'★─Programing > ☆─WebProgram' 카테고리의 다른 글
[JavaScript] 현재 페이지 refresh 하는 3가지 방법~ (0) | 2016.07.25 |
---|---|
[HTML] div 영역 숨기기 할때..visibility 와 display 의 차이 (0) | 2016.07.25 |
[jQuery] jQuery 강좌 | Methods > .inArray() (0) | 2016.07.25 |
[JSP] JSP Expression Language(표현 언어 또는 익스프레션 언어) (0) | 2016.07.25 |
[jQuery] Select Box 제어 (0) | 2016.07.25 |
Comments