选择所有具有 png 背景图像的 div
如何在 jQuery 中选择所有样式中具有 background-image: url(somepath/somename.png)
的 div
?
How can I select in jQuery all the div
s that have background-image: url(somepath/somename.png)
in their style?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
尝试添加自定义选择器:
然后选择:
Try adding a custom selector:
Then to select:
没有 jQuery 选择器,但这可能有效:
但是,更有效的方法是确保只有一个使用该背景图像的类,然后只需选择
$('.bgClass')< /代码>
There isn't a jQuery selector, but this might work:
However, a more efficient method would be to make sure you only have a single class that uses that background image, then simply select
$('.bgClass')
使用 过滤器 函数:
Use the filter function: