如何使用 jquery 向 img 标签添加一个新属性“ref="gallery"”?

How to add one new attribute ' ref="gallery" ' to img tag with jquery?

一篇文章包含多张图片,当用户查看文章时,给带有jquery的img标签添加一个新属性(ref="gallery"),如何实现?

示例: 变化

<img src="test.jpg">

<img src="test.jpg" ref="gallery">
$('img').attr('ref', 'gallery');

试试这个:

$('#selectorId').attr(attname,attvalue);

对于 html 尝试:

<img id="myimg" src="test.jpg">

在脚本中:

$('#myimg').attr('ref', 'gallery');