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
- MySQL
- TextBox
- 일괄변경
- JavaScript
- 천단위
- replace
- mariadb
- Python
- Selectbox
- docker
- TPL
- smarty
- Postfix
- random
- centos
- Eclipse
- 부모창
- jQuery
- i18n
- Oracle
- SVN
- yum
- php
- ubuntu
- 한글 깨짐
- 문자열자르기
- install
- RabbitMQ
- 확장자
Archives
- Today
- Total
목록text (1)
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 ------------------..
Javascript
2009. 7. 11. 14:52