JavaScript和jQuery如何判断select是否被选中并获取select选中的值

##JavaScript部分

var mySelect = document.getElementById("testSelect");	//定位id(获取select)
var index = mySelect.selectedIndex;	//选中索引(选取select中option选中的第几个)
var text = mySelect.options[index].text;	//获取选中文本
var value = mySelect.options[index].value;	//获取选中值
mySelect.options[index].selected	//判断select中的某个option是否选中,true为选中,false为未选中

###js例子如下:

<html>
<head>
    <script>
        function sel() {
            var mySelect = document.getElementById("testSelect");   //定位id(获取select)
            var index = mySelect.selectedIndex;   //选中索引(选取select中option选中的第几个)
			var text = mySelect.options[index].text; //获取选中文本,即option标签对之间的文字
            var value = mySelect.options[index].value;   //获取选中值
			document.getElementById("show_index").innerHTML = index;
			document.getElementById("show_text").innerHTML = text;
			document.getElementById("show_value").innerHTML = value;
			if (mySelect.options[2].selected) {  //注意index是从0开始的
				document.getElementById("show_isSelected").innerHTML = "选中了";
			} else {
				document.getElementById("show_isSelected").innerHTML = "没选中";
			}
        }
	</script>
</head>
<body>
    <select id="testSelect" onchange="sel()">
        <option id="op_1" value="Deep Learning">深度学习</option>
        <option id="op_2" value="Machine Learning">机器学习</option>
        <option id="op_3" value="Data Mining">数据挖掘</option>
        <option id="op_4" value="Image Processing">图像处理</option>
    </select>
    <br>
	<hr><font color="red">选中的option索引:</font><p id="show_index"></p>
	<hr><font color="red">选中的option文本:</font><p id="show_text"></p>
	<hr><font color="red">选中的option的值:</font><p id="show_value"></p>
	<hr><font color="red">“数据挖掘”选项是否被选中:</font><p id="show_isSelected"></p>
</body>
</html>

推荐使用菜鸟教程在线编辑器进行测试玩耍,效果如图1和图2所示。

图1

图2

##jQuery部分
1. 判断option是否被选中

$("#id").is(":checked")  //false代表未选中,true代表选中

2. 获取select选中的值

$("#mySelect option:selected").text()
$("#mySelect").find('option:selected').text()
$("#mySelect").val()

3. 获取select选中的索引

$("#mySelect").get(0).selectedIndex

4. 删除option

$("#myOption").remove()

###jQuery例子如下:
注意要有jQuery的库文件

<html>
<head>
	<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js"></script>
	<script>
        function sel() {
            document.getElementById("show_index").innerHTML = $("#testSelect").get(0).selectedIndex;
            document.getElementById("show_all_text").innerHTML = $("#testSelect").text(); // 获取所有的文本
			document.getElementById("show_text").innerHTML = $("#testSelect option:selected").text(); // 获取选中的选项的文本
            document.getElementById("show_value").innerHTML = $("#testSelect").val();
            if ($("#op_3").is(":checked")) {
                document.getElementById("show_isSelected").innerHTML = "选中了";
            } else {
                document.getElementById("show_isSelected").innerHTML = "没选中";
            }
			$("#testSelect").aped("<option value="+op_5+">"+推荐系统+"<option>");
        }
    </script>
</head>
<body>
    <select id="testSelect" onchange="sel()">
        <option id="op_1" value="Deep Learning">深度学习</option>
        <option id="op_2" value="Machine Learning">机器学习</option>
        <option id="op_3" value="Data Mining">数据挖掘</option>
        <option id="op_4" value="Image Processing">图像处理</option>
    </select>
    <br>
    <hr><font color="red">选中的option索引:</font><p id="show_index"></p>
    <hr><font color="red">选中的option文本:</font><p id="show_text"></p>
    <hr><font color="red">选中的option的值:</font><p id="show_value"></p>
    <hr><font color="red">“数据挖掘”选项是否被选中:</font><p id="show_isSelected"></p>
	<hr><font color="red">所有选项的文本:</font><p id="show_all_text"></p>
</body>
</html>

效果如图3和图4所示.

图3

图4

  • 4
    点赞
  • 9
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

清风醉雨

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值