JavaScript가 Select에서 선택한 Option 인스턴스를 동적으로 설정하는 방법
var select = document.getElementById("selectYear"); var nextYear = '2012'; for(var i=0; i<select.options.length; i++){ if(select.options[i].innerHTML == nextYear){ select.options[i].selected = true; break; } }
/** * 设置select选中 * @param selectId select的id值 * @param checkValue 选中option的值 * @author lqy * @since 2015-08-21 */ function setSelectChecked(selectId, checkValue){ var select = document.getElementById(selectId); for(var i=0; i<select.options.length; i++){ if(select.options[i].innerHTML == checkValue){ select.options[i].selected = true; break; } } };
위 내용은 JavaScript가 Select에서 선택된 옵션을 동적으로 설정하는 방법 분석의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!