Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- TPL
- Oracle
- php
- Python
- 천단위
- 확장자
- SVN
- Eclipse
- RabbitMQ
- i18n
- 부모창
- ubuntu
- replace
- Postfix
- yum
- smarty
- 일괄변경
- 문자열자르기
- mariadb
- JavaScript
- 한글 깨짐
- install
- centos
- jQuery
- Selectbox
- docker
- MySQL
- random
- TextBox
Archives
- Today
- Total
wilson's story
javascript selectbox option의 이름 추출하기 본문
반응형
방법은 2가지가 있다..
각자 맞는 스타일로 작성하면 된다.
//--- 방법: 1 --------------------- for (m = 0; m < pointFileSplit.length; m++) { var pointCount = m.toString(10); var optionID = "opt" + pointCount; var optionCheck = document.getElementById (optionID); if (optionCheck.selected == true) { //option을 선택하면 true var selectValue = optionCheck.value; var selectText = optionCheck.text; } } //--- 방법: 2 --------------------- var selectElement = document.getElementById("selectID"); var selectValue = selectElement.value; var selectText = selectElement.options[selectElement.selectedIndex].text;
반응형