我们在用到下拉列表框select时,需要对选中的
option没有触发事件,需要在select中加onchange事件
当我们触发select的双击事件时,用ondblclick方法。
当我们要取得select的选中事件时,用document.all[‘name‘].value
来获取,其中name是select的名称。
如果我们要得到select的全部的值就用一个for循环来实现。代码如下:
var vi = document.all[‘list‘].length;
for(var i=0;i<vi;i++){
document.form2.list(i).value; //form2是<form>的名称
}
JS实现代码:
??<select id="pid" onchange="gradeChange()">
<option grade="1" value="a">选项一</a>
<option grade="2" value="b">选项二</a>
</select>
<script type="text/JavaScript">
function gradeChange(){
var objS = document.getElementById("pid");
var grade = objS.options[objS.selectedIndex].grade;
alert(grade);
}
</script>
jQuery实现代码:
<select name="myselect" id="myselect">
<option value="opt1">选项1</option>
<option value="opt2">选项2</option>
<option value="opt3">选项3</option>
</select>
$("#myselect").change(function(){
var opt=$("#myselect").val();
...
});
Javascript获取select下拉框选中的值
现在有一id=test
的下拉框,怎么拿到选中的那个值呢?
分别使用javascript原生的方法和jquery方法
<select id="test" name="">
<option value="1">text1</option>
<option value="2">text2</option>
</select>
代码:
一、javascript原生的方法
1. 拿到select对象:
var myselect=document.getElementById("test");
2. 拿到选中项的索引:
var index=myselect.selectedIndex;
// selectedIndex代表的是你所选中项的index
3. 拿到选中项options的value:
myselect.options[index].value;
4:拿到选中项options的text:
myselect.options[index].text;
二、jquery方法(前提是已经加载了jquery库)
1.获取选中的项
var options=$("#test option:selected");
2.拿到选中项的值
alert(options.val());
3.拿到选中项的文本
alert(options.text());
本文转自 https://blog.csdn.net/Skr_Eric/article/details/99680439,如有侵权,请联系删除。