Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
标题说明了一切。jquery 如何通过选定的选项值来选择一个选择字段。IE。我想选择所有选择字段,其中 2 是所选选项的值。
将:selected选择器与选择器结合使用attribute equals:
:selected
attribute equals
$("select option:selected[value='2']").parent()
演示。
您可以使用:has选择器。
:has
$('select:has(option[value="2"]:selected)')
$('#SelectId option').each(function() { if($(this).val()==desiredValue) $(this).attr('selected','selected'); });
http://jsbin.com/amomek/1/edit例如。