目前我有这个 JQuery 脚本
var img = $(this);
img.wrap('<div class="photo"></div>');
img.parent().append("<p>" + img.attr("alt") + "</p>");
它成功地变成了以下内容:
<img src="photo.jpg" alt="caption">
进入这个
<div class="photo">
<img src="photos.jpg" alt="caption"/>
<p>caption</p>
</div>
除非图像具有作为父级的链接,否则一切都很好;<a href="#"><img
因为我希望它是正确的 html(我很挑剔),所以改善下面的结果将是令人满意的
<a href="#">
<div class="photo">
<img src="photos.jpg" alt="caption"/>
<p>caption</p>
</div>
</a>
对此:
<div class="photo">
<a href="#">
<img src="photos.jpg" alt="caption"/>
</a>
<p><a href="#">caption</a></p>
</div>
到目前为止,这是我的 jQuery 脚本(因为我是菜鸟,这不起作用)啊哈
if(img.parent('a')){
var targetLink = img.parent('a').attr('href').val();
img.parent('a').wrap('<div class="photo"></div>');
img.parent('div').append('<p><a href="'+targetLink+'">' + img.attr("alt") + '</p></a>');
}else{
img.wrap('<div class="photo"></div>');
img.parent().append("<p>" + img.attr("alt") + "</p>");
};
任何建议或帮助将不胜感激
:) 谢谢!
更新 答案
var withLink = img.parent('a').length > 0,
targetPar = withLink ? img.parent() : img;
targetPar.wrap('<div class="photo"></div>');
if(withLink > 0){
targetPar.parent().append('<p class="caption"><a href="'+img.parent().attr('href')+'">' + img.attr('title') + '</p></a>');
}else{
img.parent().append('<p class="caption">' + img.attr('title') + '</p>');
}