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>
-
[c] selec()를 이용한 입출력 다중화
-
[c] 구조체의 설명과 예제..
-
[c] 유닉스 프로그램에서 인수처리 해주는 getopt() 함수
-
[c] 가위 바위 보 서버, 클라이언트 소스코드
-
[java] 채팅 프로그램.. swing 사용..
-
[js] 자바스크립트로 만든 게임
-
[c] 콘솔에서 패스워드 입력시 문자 보이지 않게 하는 코드
-
[c++] 압축프로그램(Lite Zip) 샘플
-
[java] 메모패드.. 스윙(swing)으로..
-
[c] 프로그래밍의 전반적인 설명 ppt
-
[c] OpenGL 관측점 이동
-
[mysql] 양력, 음력 DB데이터