gpt4 book ai didi

jquery - 检查 CSS 中的背景

转载 作者:行者123 更新时间:2023-11-28 13:51:54 25 4
gpt4 key购买 nike

我有许多 CSS 属性和类,它们根据元素在 HTML 中出现的位置应用。

但是有些元素不等于这些值中的任何一个,所以我希望能够检查 DIV 中的哪些元素没有通过 CSS 设置背景,然后应用背景。

类似于:

$('.divclass:has('background')').addClass('IneedaBG.gif');

或者

$('.divclass:has(not:class1,class2,class2)').addClass('IneedaBG.gif');

最佳答案

我不确定类名可以有一个点 (IneedaBG.gif)。想象一下,如果您尝试使用选择器选择它:

$(".IneedaBG.gif")

我很确定这行不通。您是否需要一个 CSS 类,其中包含在属性中定义的图像?

此外,您还可以稍微加快选择器的性能,因为直接引用 .divclass 类将扫描整个 DOM:

$("div.divclass:has('background')").addClass("IneedaBG");

也尝试使用 "作为选择器,而不是使用多个 '

你能有 DIV 的 ID 吗?那会更好!

关于jquery - 检查 CSS 中的背景,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1379830/

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