我需要检查<select>是否有一个文本等于特定值的选项。

例如,如果有一个<option value="123">abc</option>,我将寻找"abc"。

有选择器来做这个吗?

我在寻找类似于$('#选择选项[值="123"]');除了文本。


当前回答

这是我在jquery V3.6.0的工作在2022年

$("#select >option").filter( function()
{
    if ($(this).text() === "123")
    {
        $(this).prop("selected", true);
    }
});

其他回答

下面的jquery 1.10.2版本适合我

  var selectedText="YourMatchText";
    $('#YourDropdownId option').map(function () {
       if ($(this).text() == selectedText) return this;
      }).attr('selected', 'selected');
    });

我遇到了同样的问题,下面是工作代码:

$("#test option").filter(function() {
    return $(this).text() =='Ford';
}).prop("selected", true);

演示:http://jsfiddle.net/YRBrp/83/

您可以遍历选项,也可以将相同的文本放在选项的另一个属性中并使用该属性进行选择。

您可以使用:contains()选择器来选择包含特定文本的元素。 例如:

$('#mySelect option:contains(abc)')

要检查给定的<select>元素是否有这样的选项,使用.has()方法:

if (mySelect.has('option:contains(abc)').length)

要查找所有包含此选项的<select>,请使用:has()选择器:

$('select:has(option:contains(abc))')

这对我有用:$(“#test”).find(“选项:contains('abc')”);