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

时间:2011-04-19 09:21:43

标签: jquery html-select key-value

请问,如何使用jQuery获取HTML select组合框的选定键和值?

$(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?
    }
});

由于

5 个答案:

答案 0 :(得分:83)

我认为你的意思是“关键”和“价值”:

<select>
    <option value="KEY">VALUE</option>
</select>

如果是这种情况,这将使您获得“价值”:

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

你可以像这样获得“KEY”:

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

答案 1 :(得分:24)

这有效:

<select name="foo" id="foo">
<option value="1">a</option>
<option value="2">b</option>
<option value="3">c</option>
</select>
<input type="button" id="button" value="Button" />

$('#button').click(function() {
    alert($('#foo option:selected').text());
    alert($('#foo option:selected').val());
});

答案 2 :(得分:8)

<select name="foo" id="foo">
 <option value="1">a</option>
 <option value="2">b</option>
 <option value="3">c</option>
  </select>
  <input type="button" id="button" value="Button" />
  });
  <script> ("#foo").val() </script>

如果您选择了等等,则返回1.

答案 3 :(得分:4)

$(this).find("select").each(function () {
    $(this).find('option:selected').text();
});

答案 4 :(得分:0)

$("#elementName option").text(); 

这将给出Combo-Box的选定文本。

$("#elementName option").val();

这将在组合框中为选定的值关联所选项目。

$("#elementName option").length;

它将给出数组中的多选组合框值,长度将给出数组元素的数量。

注意 #elementName 是ID组合框。