반응형
(예전에 작성된 글입니다)
<script>
var arrBoardList = new Array();
//이 부분은 쿼리 리턴값으로 while 해주는 부분
arrBoardList.push(new Array("text","value"));
// array 를 select 의 opton 으로 추가해주는 함수
function fncAppendOptionSel(selectorObj, data){
for(var i=0;i<args_data.length;i++){
var addOption = document.createElement("option");
addOption.appendChild(document.createTextNode(data[i][0]));
addOption.setAttribute("value",data[i][1]);
selectorObj.appendChild(addOption);
}
}
function fncAddOptionSel(selectorObj, label, value) {
var addOption=document.createElement('option');
addOption.text=label;
addOption.value=value;
addOption.selected = true;
selectorObj.add(addOption,0);
}
fncAddOptionSel($('sch_board_list'),"선택하세요","");
fncAppendOptionSel($('sch_board_list'),arrBoardList);
</script>
의 방식으로 했는데 귀찮아서 요즘은 그냥 java 단에서 이래저래 처리를 하는중.
반응형
'개발 > Javascript, ECMAScript' 카테고리의 다른 글
[자바스크립트 javascript] 팝업에서 opener 의 변경이 필요할 때 (0) | 2014.05.19 |
---|---|
[jquery] closest / parent / parents (0) | 2014.05.12 |
[jquery] bind click delegate live 차이 (0) | 2014.02.05 |
[Javascript] 클래스 개념 (0) | 2013.11.06 |
모바일 체크 (0) | 2011.04.01 |
location.href 와 location.replace (0) | 2011.01.07 |
자바스크립트 엔터키 (0) | 2010.11.12 |
아이프레임 리사이징 크로스브라우징 예제 (0) | 2010.10.01 |