在dom准备使用jquery附加html元素

时间:2013-02-06 16:08:56

标签: javascript jquery

我有遗留数据库,其中包含rest 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来实现这个目标?

谢谢大家。

3 个答案:

答案 0 :(得分:1)

$(function(){
 $('#mainNewsBody .news img').attr('rel', 'superbox[image]');
});

答案 1 :(得分:0)

$(document).ready(function() {

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

});

答案 2 :(得分:0)

$(document).ready(function(){
    $('#mainNewsBody .news p img').attr('rel', 'superbox[image]');
});