如何使用 jQuery 检测图像是否为 png?

发布于 2024-10-10 08:44:09 字数 45 浏览 3 评论 0原文

我需要一些方法来用 jQuery 标记 PNG。有什么办法可以做到这一点吗?

I need some way to mark PNGs with jQuery. Is there any way to do this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

如果没有你 2024-10-17 08:44:09

为了在 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 a src 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文