jQuery通过其文本从selectbox中获取值
这个问题在这里已经有了答案:
尝试在选定的选项上使用.text()。 例如:
$('select option:selected').text();
使用filter
方法(完全匹配):
$('select option').filter(function(){
return $(this).text() === '4 Years';
}).val();
使用:contains
选择器:
$('select option:contains(4 Years)').val();
如果您想要所选选项的值:
$('#year').val();
如果你想要一个特定的选项的话:
$("#year option:contains('4 Years')").val();
问候。
链接地址: http://www.djcxy.com/p/29287.html