Get selected option data using Jquery or javascript - Stack Overflow

I have to get the selected option data whose option value is known. I have the selected option value an

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/

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743650638a4484511.html

相关推荐

  • Get selected option data using Jquery or javascript - Stack Overflow

    I have to get the selected option data whose option value is known. I have the selected option value an

    1天前
    20

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信