gpt4 book ai didi

jquery - 如何检查背景内联是否存在

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

如何检查div是否具有背景内联样式。

html

<div style="background: #000"> </div>
<div style="background-image: url(image.jpg);"></div>
<div style="background-position: 0 0;"></div>
<div style="color: #000"></div>

如果内联背景样式存在,请添加类“test”。

如果存在内联背景图像样式,则添加类“test-1”。

最佳答案

您可以使用:

if($("div[style*='background']")){
//exist...!!! now addclass to these elements
$("div[style*='background']").addClass('test');
$("div[style*='background-image']").addClass('test-1');
}

关于jquery - 如何检查背景内联是否存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24511465/

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