일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- Postfix
- 확장자
- jQuery
- Selectbox
- replace
- TPL
- Eclipse
- JavaScript
- centos
- yum
- RabbitMQ
- 일괄변경
- Oracle
- random
- SVN
- install
- i18n
- php
- TextBox
- 부모창
- mariadb
- smarty
- MySQL
- docker
- ubuntu
- 천단위
- Python
- 문자열자르기
- 한글 깨짐
- Today
- Total
목록Selectbox (4)
wilson's story
// selectbox selected for (i = 0; i < document.getElementById("test").options.length; i++) { if (document.getElementById("test").options[i].value == "비교값이 들어감") { document.getElementById("test").options[i].selected = "selected"; } }
방법은 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 ------------------..
보통 selectbox는 선택된 한 항목만 넘어간다 하지만 여러 option 값을 넘기고 싶을때는 selectbox 를 여러 항목이 선택 될수 있도록 multiple = "multiple" 적용한 후 submit 전에 항목을 모두 선택 하게 처리해준다 for(var i=0; i < frm.list_ordr.length;i++){ frm.list_ordr.options[i].selected= true; } selectbox의 모든 값이 넘간다