最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Getting displayed value of select tag - Stack Overflow

programmeradmin1浏览0评论
<select id="kamal">
<option value"ACTIVE">a<option>
<option value"DISABLED">b<option>
<option value"DELETED">c<option>
</select>

I want to get the value displayed on the page..not the value shown in the option tag

I am interested in "aktiv" not "ACTIVE"

when i write document.getElementById("kamal").value;then the value that is select es in the variable. But I want the displayed value.

Please help me how can I take this value.

NOTE: By using all the options given below, it will give me the value of the selected option, I want the label of the selected option. I mean the displayed value on html page.

<select id="kamal">
<option value"ACTIVE">a<option>
<option value"DISABLED">b<option>
<option value"DELETED">c<option>
</select>

I want to get the value displayed on the page..not the value shown in the option tag

I am interested in "aktiv" not "ACTIVE"

when i write document.getElementById("kamal").value;then the value that is select es in the variable. But I want the displayed value.

Please help me how can I take this value.

NOTE: By using all the options given below, it will give me the value of the selected option, I want the label of the selected option. I mean the displayed value on html page.

Share Improve this question edited Jan 30, 2013 at 15:27 Sunny Gupta asked Apr 10, 2012 at 8:08 Sunny GuptaSunny Gupta 7,06717 gold badges57 silver badges80 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 8

The solution you are looking for is:

To get the value:

var element = document.getElementById("kamal");
var selectedValue = element.options[element.selectedIndex].value;

To get the text:

var element = document.getElementById("kamal");
var selectedValue = element.options[element.selectedIndex].text;

EDIT:

working example at:

http://jsfiddle/n85tW/6/

Try :

var sel = document.getElementById("kamal")
alert(sel.options[sel.selectedIndex].value); 

Working example here

Note: your <option> tags should be closed with </option>

var element = document.getElementById("kamal"); var selectedValue = element.options[element.selectedIndex].innerHTML;

THis was the solution of my question.

发布评论

评论列表(0)

  1. 暂无评论