在javascript中获取select中的选项值[重复]
Posted
技术标签:
【中文标题】在javascript中获取select中的选项值[重复]【英文标题】:Get the option value in select in javascript [duplicate] 【发布时间】:2012-08-03 10:28:01 【问题描述】:可能重复:How to get the selected value of dropdownlist using javascript?How to get the value of a selected text in javascript
<select id="short_code">
<option value="12">First</option>
<option value="11">Second</option>
<option value="10">Third</option>
<option value="9">Fourth</option>
</select>
我需要这样做:
if(document.getElementById("short_code").options.item(document.getElementById("short_code").selectedIndex).text)== "First")
//get the value of the option Fist , how to get the value?
【问题讨论】:
你just asked about this。如果答案不起作用,您需要澄清您的问题而不是重新发布。 【参考方案1】:var elem = document.getElementById("short_code"),
selectedNode = elem.options[elem.selectedIndex];
if ( selectedNode.value === "First" ) //...
【讨论】:
这不是真的你会怎么做,是吗?elem.options[elem.selectedIndex]
的处理方式很长(并且可能容易出错)。
啊,对不起。我错过了这个笑话。
selectedNode = elem.options[elem.selectedIndex].value;【参考方案2】:
这个怎么样:
var select = document.getElementById('short_code');
var options = select.options;
var selected = select.options[select.selectedIndex];
//which means that:
console.log(selected.value || selected.getAttribute('value'));//should log "12"
console.log(selected.innerhtml);//should log(First);
遍历所有选项(创建引用变量,就像我对options
所做的那样,或者简单的for (var i=0;i<select.options.length;i++)
),您可以获得所需的所有信息
【讨论】:
either creating a reference variable, like I did with options, or plain for
- 虽然你没有使用它....
不,我没有,但我将它包含在 sn-p 中只是为了展示如何引用节点列表以上是关于在javascript中获取select中的选项值[重复]的主要内容,如果未能解决你的问题,请参考以下文章
获取select2中选定选项的值,然后使用jquery将值设置为输入文本?
javascript中select的onchange事件获取当前选项的值