<!DOCTYPE html>
<html>
<head>
</head>
<body>
<select id="test" name="">
<option value="1">text1</option>
<option value="2">text2</option>
</select>
<script>
// 1:拿到select对象:
var myselect = document.getElementById("test");
// 2:拿到选中项的索引:
var index = myselect.selectedIndex; // selectedIndex代表的是你所选中项的index
//3:拿到选中项options的value:
alert(myselect.options[index].value);
//4:拿到选中项options的text:
alert(myselect.options[index].text);
//如果是jquery就简单一下
//1:var options=$("#test option:selected"); //获取选中的项
//2:alert(options.val()); //拿到选中项的值
//3:alert(options.text()); //拿到选中项的文本
</script>
</body>
</html>
网友回复
如何让ai帮我自动在小红书或抖音上自动根据需求截流与潜在客户聊天拉客?
如果用go编写一个在virtualbox中启动的简单操作系统?
go如何搭建一个零信任网络?
如何用python实现一个公网代理访问软件?
如何用go实现一个公网代理访问软件?
如何用python实现一个内网穿透打洞程序,实现内网的80端口暴露到公网上可以访问?
如何用go实现一个内网穿透打洞程序,实现内网的80端口暴露到公网上可以访问?
何为Shadowsocks 代理?
python如何实现类似php的opendir目录相互隔离的fastcgi多租户虚拟空间?
nodejs如何实现类似php的opendir目录相互隔离的fastcgi多租户虚拟空间?


