var selectObj = document.getElementById('selectId'); 🎜> // 객체를 통해 옵션 추가 selectId.add(new Option("first","1")) selectId.add(new Option("Second", "2")) / / ID로 옵션 추가 selectId.add(new Option("Third", "3")) selectId.add( new Option("Fourth", "4")) // 메소드 추가 id를 통해 (객체를 통해 메소드를 추가할 수도 있습니다) selectId.onchange = function(){ // 객체 값과 텍스트를 통해 가져옵니다. options[selectObj.selectedIndex].text); // ID로 값 및 텍스트 가져오기 경고(selectId.value) 경고(selectId.options[selectId.selectedIndex].text); > // 이를 통해 값과 텍스트를 얻을 수도 있습니다. Alert(this.options[ this.selectedIndex].text); 스크립트>