jQuery - 嵌套each() 的问题
我试图解决类似的问题,但在这里找不到任何问题。所以这是我的问题。 我有一个包含多个 h2 的结构。每个 h2 内部都有一个图像指向不同的 url。我需要从每个图像中获取这个 url 并将其分配给对应的 h2。
这是我的代码(这个有效,但它只获取第一个链接):
$("h2").each(function() {
var $link = $('a[rel=example_group]').attr("href");
$(this).append($link);
});
所以我尝试了这个:
$("h2").each(function() {
var $link = $('a[class=button zoom]').each(function(){$(this).attr("href")});
$(this).append($link);
});
但它不起作用
你能帮忙吗?谢谢
I tried to look after a similar problem but couldn't find any here. So here is my problem.
I have a structure with multiple h2. Each h2 have an image inside that points to a different url. I need to fetch this url from each image and assign it to the correspondent h2.
Here is my code (this one works, but it only fetches the first link):
$("h2").each(function() {
var $link = $('a[rel=example_group]').attr("href");
$(this).append($link);
});
So I tried this:
$("h2").each(function() {
var $link = $('a[class=button zoom]').each(function(){$(this).attr("href")});
$(this).append($link);
});
but it is not working
Could you help? Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
试试这个....
try this....
怎么样
howabout
问题是您没有确定 a 标签的搜索范围。
只需缓存
$(this)
并进行查找即可使用它,它应该适合您:The problem is that you are not scoping your search for the a tag.
Just cache
$(this)
and do a find use it and it should work for you:在第一个示例中,您始终在每次迭代中附加相同的链接。
不确定您想对第二个示例做什么。
在您的第一个示例中,尝试仅向选择器添加上下文更改:
by
,它应该可以工作。
您也可以这样做:
如果我很好地理解您的要求,它也应该有效。
In your first example you always append the same link over each iteration.
Not sure what you're trying to do with the second example.
In your first example try to just add a context to your selector changing:
by
and it should work.
You also can do something like:
It should work too if i understand well your request.