gpt4 book ai didi

javascript - jQuery查找不存在的对象

转载 作者:行者123 更新时间:2023-11-29 20:05:43 44 4
gpt4 key购买 nike

这个问题在这里已经有了答案:





jQuery determining if element exists on page

(3 个回答)


7年前关闭。




我尝试检测是否存在:

var listBoxSelector = $("div#selectors select:eq(1)");
var option = listBoxSelector.find("option[value=" + value + "]:eq(0)");
alert(option);

但是如果这样的选项不存在,我无论如何都会收到对象。检测某些值是否存在的更好方法是什么?

最佳答案

您可以使用 length jQuery 对象的属性:

The number of elements in the jQuery object.


if (listBoxSelector.find("option[value="+value+"]").length) {
alert('Exists')
}

关于javascript - jQuery查找不存在的对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11985024/

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