HTML代码:
사용 jQuery获取 select选中对象적 값, 텍스트
$(function(){
$("#month").change(function() {
Alert($(this).find("option:selected").val());
Alert($(this).find("option:selected").text());
});
});
JS获取 select选中对象의 값이 是很容易적
function selectInput(oSelect) {
Alert(oSelect.value);
}
如果要用JS获取 select选中对象的text呢 ?
function selectInput(oSelect) {
Alert(oSelect.options[oSelect.selectedIndex].text);
}
如果select 没有默认则设第一个为默认?
document.getElementById("test“).options[0].selected=true;