2011. 9. 8. 16:28

SELECT Box 값, 텍스트 가져오기


 
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)">
<option id="0">value1</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