我的代码正在遍历一些 div,我试图找到在其 style 属性中包含某些文本的那个。这是我最好的尝试,但没有找到。
$("#RootDiv > div").each(function (index)
{
if ($(this).is("[style~='bg-stripes.gif']"))
alert("found");
});
html
<div id="RootDiv">
<div style="background-color: White;"></div>
<div style="background-image: url(bg-stripes.gif);"></div>
<div style="background-color: White;"></div></div>