'셀렉트박스 텍스트'에 해당되는 글 1건
- 2011.09.08 SELECT Box 값, 텍스트 가져오기
2011. 9. 8. 16:28
SELECT Box 값, 텍스트 가져오기
2011. 9. 8. 16:28 in -=-= 컴퓨터 =-=-/웹프로그래밍
var startTypeValue = document.frm.startType.options[document.frm.startType.options.selectedIndex].value; //체크박스 선택되어진 값 가져오기
var startTypeText = document.frm.startType.options[document.frm.startType.options.selectedIndex].text; //체크박스 선택되어진 텍스트 가져오기
<select id="seledtBox" onchange="alert(this.options[this.selectedIndex].text)">
var startTypeText = document.frm.startType.options[document.frm.startType.options.selectedIndex].text; //체크박스 선택되어진 텍스트 가져오기
<select id="seledtBox" onchange="alert(this.options[this.selectedIndex].text)">
<option id="0">value1</option>
<option id="1">value2</option>
<option id="2">value3</option>
<option id="3">value4</option>
<option id="1">value2</option>
<option id="2">value3</option>
<option id="3">value4</option>
<option id="4">value5</option>
</select>
참고주소 : http://cafe.naver.com/specialj.cafe?iframe_url=/ArticleRead.nhn%3Farticleid=2246&
http://godpage.tistory.com/entry/select%EB%B0%95%EC%8A%A4%EC%9D%98-onchange%EC%97%90%EC%84%9C-thisvalue-%EC%82%AC%EC%9A%A9%ED%95%98%EA%B8%B0
'-=-= 컴퓨터 =-=- > 웹프로그래밍' 카테고리의 다른 글
input box 한글/영문 선택입력하기 (0) | 2011.10.07 |
---|---|
자바스크립트 replace (0) | 2011.09.21 |
request 데이터 가져오는 우선순위 (0) | 2011.09.05 |
[JAVASCRIPT] 팝업에서 부모페이지 변수 접근하기 및 함수 호출 (0) | 2011.08.16 |
스트러츠1 액션이동시 파라미터 넘기는 법 (0) | 2011.08.10 |