获取选中的下拉框的值和文本

/***获取选中的下拉框的文本名称***/
function doSelect(){
	alert(document.getElementById("status").options[window.document.getElementById("status").selectedIndex].text);
}
/***获取选中的下拉框的值***/
function doSelect(){
 alert(document.getElementById("status").options[window.document.getElementById("status").selectedIndex].value);
}

你可能感兴趣的:(获取选中的下拉框的值和文本)