<option value="0">선택하세요</option>
위처럼 되어 있으면 "선택하세요"라는 텍스트를 가져오고 싶다는 것이다. 어쨌든 가져올 수 있는 코드는 간단하다.
var target = document.getElementById("testSelect");
target.options[target.selectedIndex].text
보면 뻔한 소스이이다. 셀렉트박스의 Option배열에서 text를 가져오는데 선택한 Option의 위치를 알기 위해서 해달 셀렉트박스의 selectedIndex를 사용한 것이다.
감사합니다.
관리자만 볼 수 있는 댓글입니다.