1

标题说明了一切。jquery 如何通过选定的选项值来选择一个选择字段。IE。我想选择所有选择字段,其中 2 是所选选项的值。

4

3 回答 3

3

:selected选择器与选择器结合使用attribute equals

​$("select option:selected[value='2']").parent()

演示

于 2012-08-31T22:11:14.813 回答
0

您可以使用:has选择器。

$('select:has(option[value="2"]:selected)')
于 2012-08-31T22:11:26.500 回答
0
$('#SelectId option').each(function() {
  if($(this).val()==desiredValue) $(this).attr('selected','selected');
});

http://jsbin.com/amomek/1/edit例如。

于 2012-08-31T22:17:09.343 回答