jQuery通过其文本从selectbox中获取值

这个问题在这里已经有了答案:

  • 使用jQuery 29个答案从下拉列表中选择文本(选择框)

  • 尝试在选定的选项上使用.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/83113.html

    上一篇: jQuery get the value from selectbox by its text

    下一篇: Get text of the selected option with jQuery