jQuery - 迭代问题
This is probaby really easy for you guys. Its a real hassle for me..
I want to add a new link next to all of my other links.
Could someone help me out? Please!?
http://jsfiddle.net/Ahndm/
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
this
来引用当前元素,而不是循环中的$("a")
,如下所示:这是更新/工作演示。任何时候你在
.each()
中,你都可以使用this
是当前 DOM 元素,使用$("a")
选择所有 锚点,创建n^2
链接。Instead of
$("a")
in your loop, usethis
to reference the current element, like this:Here's the updated/working demo. Any time you're inside a
.each()
you can usethis
which is the current DOM element, using$("a")
selects all anchors, creatingn^2
links.