gpt4 book ai didi

jquery - 隐藏具有特定 alt 值的所有元素

转载 作者:行者123 更新时间:2023-12-01 06:56:14 25 4
gpt4 key购买 nike

我希望能够使用 jquery 隐藏 ALT 值为 3 的所有元素。

隐藏所有具有属性alt="3"的元素

这可能吗?如果可以的话,该怎么做?

谢谢

最佳答案

试试这个:

$('[alt="3"]').hide();

它使用attribute selector匹配 alt 值为 3 的元素。

hide() 显然,隐藏了所有匹配的元素。要缩小选择器范围(并使其更快一点),您始终可以照常添加标签名称:

$('div[alt="3"]').hide();
<小时/>

对于动态值,您可以使用普通的字符串连接:

var theValue = 3;

$('div[alt="' + theValue + '"]').hide();

关于jquery - 隐藏具有特定 alt 值的所有元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8654870/

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