2010. 5. 18. 18:04
초보프로그래머만..
단지 value값만을 가져온다면 단순히 document.getElementByName("selBox").value <---이렇게만 해줘도 된다.
그렇지만 "한국","미국","중국"처럼 내용값을 가져오려면
ex)
<select name="selBox">
<option value="1">한국</option> <--0번째값
<option value="2">미국</option> <--1번째값
<option value="3">중국</option> <--2번째값
</select>
document.getElementByName("selBox")[document.getElementByName("selBox").selelctedIndex].text
*만약2번을 선택한경우 selBox[1]번째의 text값을 가져오는것이다.
위와 같이 해주어야 선택된 text값을 가져올수 있다..
알고나면 아무것도 아니지만 모를땐 답답하다;;;;
document.getElementByName("selBox")[document.getElementByName("selBox").selelctedIndex].text
*만약2번을 선택한경우 selBox[1]번째의 text값을 가져오는것이다.
위와 같이 해주어야 선택된 text값을 가져올수 있다..
알고나면 아무것도 아니지만 모를땐 답답하다;;;;
'초보프로그래머만..' 카테고리의 다른 글
Setting property 'source' to 'org.eclipse.jst.jee.server:플젝명' did not find a matching property. (1) | 2010.10.05 |
---|---|
한글 <->유니코드 변환 (4) | 2010.09.07 |
[SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:프로젝트명' did not find a matching property. (0) | 2010.04.02 |
jsp에서 엑셀데이터를 받아 디비에 저장[java] (0) | 2010.03.12 |
[html]textArea에서 값보여줄때 줄바꿈 (0) | 2010.03.12 |