获得select内容

来源:互联网 发布:flash小游戏源码下载 编辑:程序博客网 时间:2024/05/29 13:20

改变后获得
var typeindex=document.frm.c_type.selectedIndex;
document.frm.ctype.value=document.frm.c_type.options[typeindex].text;

改变时获得
<html>
<head>
<script language="javascript">
function func(obj){
alert(obj.options[obj.selectedIndex].innerText);
}
</script>
<title>test</title>
</head>
<body>
<select name="select1" onchange="func(this);">
<option value="1">一</option>
<option value="2">二</option>
<option value="3">三</option>
<option value="4">四</option>
</select>
</body>
</html>

原创粉丝点击