gpt4 book ai didi

javascript - jQuery - 选定的选项值包含字符串

转载 作者:行者123 更新时间:2023-11-29 14:55:44 25 4
gpt4 key购买 nike

我有一个 if 语句,如果 select 元素的选定值不包含“ALL”,我会尝试设置一个变量

这是我试过的代码,但它总是返回“%”...

if(!$("select.mySelect option:selected").filter(":contains('ALL')")) {
selected_option = $("select.mySelect option:selected");
} else {
selected_option = "%";
}

HTML

<select class="mySelect">
<option value="ALLTYPE1">All type 1</option>
<option value="CAR">Car</option>
<option value="VAN">Van</option>
<option value="ALLTYPE2">All type 2</option>
<option value="PLANE">Plane</option>
<option value="HELICOPTER">Helicopter</option>
</select>

有什么想法吗?

最佳答案

您的if 语句不正确。 .filter() 永远不会返回 false 值——它永远是一个 jQuery 集合——它可以是空的,但绝不是 false。要测试它是否存在 .filter() 返回的 jQuery 集合中的任何元素,请使用 .length 属性。

使用:

if($("select.mySelect option:selected").filter(":contains('ALL')").length === 0) {
...

JSFiddle 在这里:http://jsfiddle.net/egEX8/

关于javascript - jQuery - 选定的选项值包含字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18250555/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com