0

我有一个遗留数据库,除了客户端用来呈现一些页面片段的其余 html 源代码。我想获取里面的所有图像#mainNewsBody .news p并添加指向该图像的链接rel='superbox[image]'

现在是

<img src="http://www.mysite.com/images/DSCF1087.JPG" />它应该是

<img src="http://www.mysite.com/images/DSCF1087.JPG" rel='superbox[image]'/>

如何在 dom 上使用 jquery 来实现这一点?

谢谢大家。

4

3 回答 3

1
$(function(){
 $('#mainNewsBody .news img').attr('rel', 'superbox[image]');
});
于 2013-02-06T16:11:02.103 回答
0
$(document).ready(function() {

    $('#mainNewsBody .news p img').attr("rel", "superbox[image]");

});
于 2013-02-06T16:11:34.307 回答
0
$(document).ready(function(){
    $('#mainNewsBody .news p img').attr('rel', 'superbox[image]');
});
于 2013-02-06T16:11:40.110 回答