如何向具有特定类或替代文本 js/jquery 的图像添加属性?

发布于 2025-01-11 02:25:51 字数 525 浏览 0 评论 0原文

我需要使用 JS 或 jQuery 为特定图像添加属性,但我无法弄清楚。

我正在使用 WordPress,并且我想要添加属性的图像位于滑块内,因此我无法向这些图像添加任何类。

我尝试通过使用容器类查找图像来添加我想要的属性,但它不起作用。

$('.dce-img > img').attr('rlskip', '1');

这就是我想要的:

<div class="dce-item">
  <figure data-image-ratio="0.5" class="dce-img dce-fit-img">
    <img src="../img/F4D13DA3-5351-4F69-8C33-0A1EF3BFDF67.webp"  alt="Demo_ts_2" rlskip="1"> 
  </figure>
</div>

你能帮我找到解决方案吗?我必须在此处将 rlskip 属性添加到滑块的图像中。

I need to add an attribute to specific images by using JS or jQuery, but I can't figure it out.

I'm using WordPress and the images that I want to add the attribute are inside a slider, so I cannot add any class to those images.

I tried to add the attribute that I want by using the container class to find images, but it didn't work.

$('.dce-img > img').attr('rlskip', '1');

This how I want it to be:

<div class="dce-item">
  <figure data-image-ratio="0.5" class="dce-img dce-fit-img">
    <img src="../img/F4D13DA3-5351-4F69-8C33-0A1EF3BFDF67.webp"  alt="Demo_ts_2" rlskip="1"> 
  </figure>
</div>

Can you help me to find a solution please? I have to add the rlskip attribute to the images of the slider here.

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

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

发布评论

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

评论(1

少女的英雄梦 2025-01-18 02:25:51

问题是 $ 未定义。将 $ 更改为 jQuery 如下所示:

jQuery('.dce-img > img').attr('rlskip', '1');

The problem is that $ is not defined. Change $ to jQuery like below:

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