我必须得到选项值已知的选定选项数据.我有选择的选项值,我想要包含在选项之间的数据. 例如,在以下选择中: select name="oi_report_contact[sex]" id="oi_report_contact_sex" option value="1"Male/option o
例如,在以下选择中:
<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>
我有价值1,我需要通过Jquery或Javascript获取数据“男性”.
请注意:$(‘#oi_report_contact_sex’).val();当选择1时,将给出1而不是男性.
你只需要打电话var content = $('#oi_report_contact_sex option:selected').html();
获取所选选项的内部内容.