js获取html select当前选中值代码:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>js获取html select当前选中值-www.codesou.cn</title>
</head>
<body>
<select id="user" onchange="showSelect()">
<option value="zhangsan">张三</option>
<option value="lisi">李四</option>
<option value="wangwu">王五</option>
</select>
<script type="text/javascript">
function showSelect(){
var obj = document.getElementById("user");
var index = obj.selectedIndex;//当前select选中项的索引
console.log(obj.options[index].value);//输出当前select选中项的value
console.log(obj.options[index].text);//输出当前select选中项的text
}
</script>
</body>
</html>
jquery获取html select当前选中值代码:
<!doctype html>
<html>
<head>
<meta charset="UTF-8">
<title>js获取html select当前选中值-www.codesou.cn</title>
<script src="jquery.min.js"></script>
</head>
<body>
<select id="user" onchange="showSelect()">
<option value="zhangsan">张三</option>
<option value="lisi">李四</option>
<option value="wangwu">王五</option>
</select>
<script type="text/javascript">
function showSelect(){
console.log($("#user").find("option:selected").val());//输出当前select选中项的value
console.log($("#user").find("option:selected").text());//输出当前select选中项的text
}
</script>
</body>
</html>
想要了解更多内容,请持续关注码农资源网,一起探索发现编程世界的无限可能!
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » js/jquery获取html select当前选中值
本站部分资源来源于网络,仅限用于学习和研究目的,请勿用于其他用途。
如有侵权请发送邮件至1943759704@qq.com删除
码农资源网 » js/jquery获取html select当前选中值