Develop
2013.04.23 15:10
[js] 셀렉트박스(select)의 옵션(option) 동적으로 추가/제거
조회 수 9228 댓글 0
첨부 '1' |
---|
좋은 예제인듯..
아래는 주요 함수 부분임~
<script> /* *Source Select의 요소(option)를 Target Select로 복사한다. */ function copyElement(sourceObj, targetObj){ var elms = sourceObj.options; for( i = 0, k = elms.length; i < k; i++ ){ if( elms[i].selected ){ targetObj.add(new Option(elms[i].text, elms[i].value, false, false)); } } sourceObj.selectedIndex=-1; } /* *Source Select의 요소(option)를 제거한다. */ function removeElement(sourceObj){ var elms = sourceObj.options; var posArr = new Array(); var increase = 0; for( i = 0, k = elms.length; i < k; i++ ){ if( elms[i].selected ){ posArr[increase++] = elms[i].value; } } for( i = 0, k = posArr.length; i < k; i++ ){ for( x = 0, y = elms.length; x < y; x++ ){ if( (posArr[i] == elms[x].value) && elms[x].selected ){ sourceObj.remove(x); x = 0; y--; } } } } /* *Source Select의 요소(option)를 Target Select로 이동한다. */ function moveElement(sourceObj, targetObj, isSort){ var elms = sourceObj.options; for( i = 0, k = elms.length; i < k; i++ ){ if( elms[i].selected ){ targetObj.add(new Option(elms[i].text, elms[i].value, false, false)); } } removeElement(sourceObj); sourceObj.selectedIndex = -1; } /* *Source Select의 요소(option)의 상하순서를 바꾼다. */ function move_option_in(src,to) { if(!src)return; var src_index = src.selectedIndex; if(src_index<0)return; if(to == "up"){ if(src_index==-1||src_index==0)return; var tempoption = new Option(src.options[src_index].text, src.options[src_index].value); src.options[src_index] = new Option(src.options[src_index-1].text, src.options[src_index-1].value); src.options[src_index-1]=tempoption; src.options[src_index-1].selected=true; }else if(to == "down"){ if(src_index>=src.options.length-1)return; var tempoption = new Option(src.options[src_index].text, src.options[src_index].value); src.options[src_index] = new Option(src.options[src_index+1].text, src.options[src_index+1].value); src.options[src_index+1]=tempoption; src.options[src_index+1].selected=true; } } </script>
번호 | 분류 | 제목 | 글쓴이 | 날짜 | 조회 수 |
---|---|---|---|---|---|
649 | Develop |
[ios] PHP로 APNS 프로바이더~
![]() |
hooni | 2013.06.27 | 17940 |
648 | Develop | [ios] Pod 특정 버전 설치하고 사용하기 | hooni | 2022.05.28 | 5153 |
647 | Develop | [ios] Random Thoughts: Rand() vs. arc4random() | hooni | 2013.10.31 | 77976 |
646 | Develop |
[ios] Requesting Location Permissions in iOS
![]() |
hooni | 2018.08.18 | 8163 |
645 | Develop |
[ios] SBCampanion App 초안
![]() |
hooni | 2015.09.16 | 2007 |
644 | Develop | [ios] Sprite Kit & 사운드 재생시 백그라운드 진입시 앱이 비정상적으로 종료됨 | hooni | 2014.04.18 | 4488 |
643 | Develop |
[ios] SQLite 사용하기(튜토리얼) + 샘플코드
![]() |
hooni | 2014.03.28 | 4622 |
642 | Develop |
[ios] Start developing your navigation app for CarPlay without enrollment
![]() |
hooni | 2020.02.22 | 132673 |
641 | Develop |
[ios] StoryBoard(xib) 없이 프로젝트 만들기
![]() |
hooni | 2015.02.12 | 2228 |
640 | Develop |
[ios] Swift 4 Dictionary 사용하기
![]() |
hooni | 2018.11.29 | 4106 |
639 | Develop | [ios] Swift 4 Singleton inheritance | hooni | 2018.10.31 | 5920 |
638 | Develop | [ios] Swift 4 String, Date, DateFormatter 예제 | hooni | 2018.10.18 | 4390 |