我有遗留数据库,其中包含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来实现这个目标?
谢谢大家。
答案 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]');
});