1. 옵션 삽입
1. DOM 메소드
var oSelectYear = document.getElementById("SelectYear")
var op = document.createElement("option"); op.innerHTML = "2010";
op.value = "2010";
oSelectYear.appendChild(op);
2. 새로운 옵션 메소드
doc.getElementById( "SelectMonth");
oSelectMonth.options.add(new Option(1, 1))
oSelectMonth.options.add(new Option(2, 2))
2. 옵션 지우기
var oSelectMonth = document.getElementById("SelectMonth"); oSelectMonth.options.length = 0; //선택에서 옵션 지우기
3 , 기본 선택 옵션 설정 var oSelectMonth = document.getElementById("SelectMonth");
//oSelectMonth.selectedIndex = 1; //방법 1: 기본적으로 두 번째 항목이 선택됩니다
/ /setTimeout(function() { oSelectMonth.selectedIndex = 1; }, 0); //dom 렌더링 문제를 방지하기 위해 setTimeout 지연을 사용합니다
// oSelectMonth.options[1].selected = //방법 2
oSelectMonth.options[1].setAttribute("selected", "true"); //방법 3: setAttribute를 사용하여 설정하는 것이 좋습니다.