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

Get selected option data using Jquery or javascript - Stack Overflow

programmeradmin0浏览0评论

I have to get the selected option data whose option value is known. I have the selected option value and I want the data which is wrapped between the option.

For example in the following select:

<select name="oi_report_contact[sex]" id="oi_report_contact_sex">
       <option value="1">Male</option>
       <option value="2">Female</option>
       <option value="3">Other</option>
</select>

I have value 1, I need to get the data "Male" through Jquery or Javascript.

Please note : $('#oi_report_contact_sex').val(); will give 1 and not male, when 1 is selected.

I have to get the selected option data whose option value is known. I have the selected option value and I want the data which is wrapped between the option.

For example in the following select:

<select name="oi_report_contact[sex]" id="oi_report_contact_sex">
       <option value="1">Male</option>
       <option value="2">Female</option>
       <option value="3">Other</option>
</select>

I have value 1, I need to get the data "Male" through Jquery or Javascript.

Please note : $('#oi_report_contact_sex').val(); will give 1 and not male, when 1 is selected.

Share Improve this question asked Jan 18, 2013 at 13:43 Sachin PrasadSachin Prasad 5,41112 gold badges55 silver badges101 bronze badges
Add a ment  | 

4 Answers 4

Reset to default 6

You just have to call

var content = $('#oi_report_contact_sex option:selected').html();

to get the inner content of the selected option.

You can use .text() method to get the text value. Like this.

$('#oi_report_contact_sex').on('change', function () {
  alert($('#oi_report_contact_sex').val());
  alert($('#oi_report_contact_sex option:selected').text());
});
          $("#oi_report_contact_sex").find('option:selected').text();

You can try:

$("#oi_report_contact_sex option[value='" + $("#oi_report_contact_sex").val() + "']").text()

jsFiddle link: http://jsfiddle/ARBb2/1/

发布评论

评论列表(0)

  1. 暂无评论