js 获取select option中的值或者value值

Posted 笔记本

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js 获取select option中的值或者value值相关的知识,希望对你有一定的参考价值。

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
<select id="sel" οnchange="cge()">
   <option value="1">4</option>
   <option value="2">5</option>
   <option value="3">6</option>
</select>
</body>
<script>
    function cge(){
        var sel=document.getElementById(‘sel‘);
                var sid=sel.selectedIndex;
        alert(‘value值:‘+sel[sid].value+‘,option值:‘+sel[sid].innerHTML);
    }
</script>
</html>

 

以上是关于js 获取select option中的值或者value值的主要内容,如果未能解决你的问题,请参考以下文章

如何获取select下拉框的值

jQuery怎么获取Select的option个数

js如何获取到select的option值?

js:如何获取select选中的值

js获取select下拉框中的值

如何获取select里面的option的值