如何使用 jQuery 检测图像是否为 png?
我需要一些方法来用 jQuery 标记 PNG。有什么办法可以做到这一点吗?
I need some way to mark PNGs with jQuery. Is there any way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
我需要一些方法来用 jQuery 标记 PNG。有什么办法可以做到这一点吗?
I need some way to mark PNGs with jQuery. Is there any way to do this?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
为了在 jQuery 中选择带有 png 扩展名的图像元素,您可以使用属性选择器。
对于您的问题,您希望将任何
img
元素与以 ($=
).pngsrc
属性相匹配code>,因此您的解决方案将是$("img[src$='.png']")
。如果您想用特定的类(例如png
)标记这些项目,您可以这样做:$("img[src$='.png']").addClass(' png');
您可以使用相同的样式来选择具有您想要的任何属性的元素。例如,要查找具有
href
属性哈希值的所有锚点,您可以使用:$("a[href^='#']")
jQuery 有不同类型选择器的大列表,您可以在这里阅读:http://api.jquery。 com/类别/选择器/
In order to select image elements with a png extension in jQuery, you can use attribute selectors.
For your question, you want to match any
img
element with asrc
attribute that ends with ($=
).png
, so your solution would be$("img[src$='.png']")
. If you want to mark those items with a specific class (say,png
), you would do:$("img[src$='.png']").addClass('png');
You can use the same style to select elements with any attribute you desire. For instance, to find all anchors with a hash value for the
href
attribute, you can use:$("a[href^='#']")
jQuery has a big list of different types of selectors, which you can read about here: http://api.jquery.com/category/selectors/