gpt4 book ai didi

javascript - 检查特定数据属性值是否存在

转载 作者:数据小太阳 更新时间:2023-10-29 05:06:00 25 4
gpt4 key购买 nike

我正在尝试选择具有特定属性值的 DOM 元素。我想避免 each() 循环,但我在 jQuery 中看到的只是能够检测数据属性的存在,而不是它的值。所以,我想完成这样的事情:

if ($('.item[data-index="' + indexVal + '" ]'){
//if an .item with the data-index value of indexVal exists...
}

最佳答案

缺少 )$(selector) 不应放在 if 条件中。它总是 true 即使它没有选择任何东西。

if ($('.item[data-index="' + indexVal + '" ]').length) {

关于javascript - 检查特定数据属性值是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18519375/

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