您的位置:首页 > Web前端 > JavaScript

js获取select显示值

2012-06-25 20:08 134 查看
<select   name="test" id="type">
<option   value="0">请选择</option>
<option   value="1">第一</option>
<option   value="2">第二</option>
<option   value="3">第三</option>
<option   value="4">第四</option>
</select>

若要获取显示值第一 第二 第三之类的

var selectIndex = document.getElementById("type").selectedIndex;//获得是第几个被选中了
var selectText = document.getElementById("type").options[selectIndex].text //获得被选中的项目的文本

alert(selectText);//得到显示的值
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: