获取select的text内容

       在前端获取select的value比较容易,用getElementById('id')或jquery的$(#'id').va()就可,获取select的文本内容则需要用select对象的options[obj.selectedIndex].text,看js代码

<select id="test" name="cc" onchange="change()">
	<option value="1">10</option>
	<option value="2">20</option>
	<option value="3">30</option>
</select>

<script>
	function change(){
		
		alert('seel');
		var sel = document.getElementById("test");
		alert(sel.value);
		var text = sel.options[sel.selectedIndex].text;
		alert(text);
	}
</script>



你可能感兴趣的:(获取select的text内容)