帮助使用 jQuery 操作子/父元素
目前我有这个 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>
都很好,除非图像有一个链接作为父级; 因为我希望它是正确的 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>');
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我认为问题在于你的“if”语句,它应该是:
然后,当你尝试获取
标记的“href”时,你正在调用“val()”这不是必要的(甚至是正确的):
此外,虽然与您的问题无关,但“alt”属性应该描述图像的内容,而“标题”更像是我所说的“标题”。换句话说,“alt”文本对于根本看不到图像的人来说应该是可以理解的,而“标题”则向能够看到图像的人描述图像。只是一点点。
I think the problem is your "if" statement, which should be:
Then, when you try to get the "href" of the
<a>
tag, you're calling "val()" and that's not necessary (or correct, even):Also, though not relevant to your problem, the "alt" attribute is supposed to describe what the image is about, while the "title" is more like what I'd call a "caption". In other words, the "alt" text should be understandable to people who can't see the image at all, while the "title" describes an image to a person who can see it. Just a nit.;
我会这样做:
有些浏览器在使用
innerHTML
类型方法创建标记时速度非常慢,因此我倾向于使用上述方法,它使用 diretc DOM 元素创建。澄清一下,从 jQuery 1.4+ 开始,至少:使用
innerHTML
但是:使用
document.createElement()
。I would do it this way:
Some browsers are exceptionally slow at using
innerHTML
type methods for markup creation so I tend to favour the above approach, which uses diretc DOM element creation. To clarify, as of jQuery 1.4+ at least:uses
innerHTML
but:uses
document.createElement()
.