如何向具有特定类或替代文本 js/jquery 的图像添加属性?
我需要使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
问题是
$
未定义。将$
更改为jQuery
如下所示:The problem is that
$
is not defined. Change$
tojQuery
like below: