使用jQuery获取组合框的所选键/值

前端之家收集整理的这篇文章主要介绍了使用jQuery获取组合框的所选键/值前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
请,我如何获得所选的键和值的HTML选择组合框使用jQuery?
$(this).find("select").each(function () {
    if ($.trim($(this).val()) != '') {
        searchString += $.trim($(this).val()) + " "; //This gives me the key. How can I get the value also?
    }
});

谢谢

解决方法

我假设通过“键”和“价值”你的意思是:
<select>
    <option value="KEY">VALUE</option>
</select>

如果是这样,这会得到您的“VALUE”:

$(this).find('option:selected').text();

你可以得到“KEY”这样:

$(this).find('option:selected').val();
原文链接:https://www.f2er.com/jquery/184747.html

猜你在找的jQuery相关文章