jQuery每次迭代问题
<section class="photos">
<table>
<tr>
<td><a href="/a"><img src="b.jpg" /></a></td>
<td><a href="/a"><img src="b.jpg" /></a></td>
<td><a href="/a"><img src="b.jpg" /></a></td>
</tr>
<tr>
<td><a href="/a"><img src="b.jpg" /></a></td>
<td><a href="/a"><img src="b.jpg" /></a></td>
</tr>
</table>
</section>
然后我尝试迭代每个以返回链接 href 和图像 src。
$(".photos td").each(function (index, value) {
console.log(value.a.attr('href'));
console.log(value.img.attr('src'));
});
不幸的是,上面的伪代码不起作用。有什么想法吗?
<section class="photos">
<table>
<tr>
<td><a href="/a"><img src="b.jpg" /></a></td>
<td><a href="/a"><img src="b.jpg" /></a></td>
<td><a href="/a"><img src="b.jpg" /></a></td>
</tr>
<tr>
<td><a href="/a"><img src="b.jpg" /></a></td>
<td><a href="/a"><img src="b.jpg" /></a></td>
</tr>
</table>
</section>
And then I am trying to iterate through each to return the link href and the image src.
$(".photos td").each(function (index, value) {
console.log(value.a.attr('href'));
console.log(value.img.attr('src'));
});
The above pseudo-broken-code doesn't unfortunately work. Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您无法在
value
上运行 jQuery 方法,因为它只是一个 DOM 节点。首先用它创建一个 jQuery 对象(我更喜欢this
而不是value
参数,但在本例中它们是相同的):You can't run jQuery methods on
value
, since it's just a DOM node. Create a jQuery object out of it first (I preferthis
to thevalue
argument, but they're the same in this case):Adam 已经给出了答案,但是既然我正在输入它......试试这个:(唯一的区别在于遍历部分,因为 Adam 使用“this”而我使用“value”(它们是相同的)。
不要忘记 value 代表 dom 元素(而不是 jQuery 元素),并且 attr() 是仅适用于 jQuery 对象的 jQuery 方法。
另外,你不应该关闭你的标签吗?
Adam already gave the answer, but since I was typing it... try this: (the only difference is in the traversal part, since Adam uses "this" while I use "value" (which are the same).
Don't forget that value represents a dom element (and not a jQuery element), and attr() is a jQuery method that works only for jQuery objects.
Also, shouldn't you be closing your tags?
试试这个:
Try this: