jQuery - 迭代问题

发布于 2024-09-16 17:48:55 字数 175 浏览 3 评论 0原文

这对你们来说可能真的很容易。这对我来说真的很麻烦..

我想在所有其他链接旁边添加一个新链接。

有人可以帮我吗?请!? http://jsfiddle.net/Ahndm/

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

北城孤痞 2024-09-23 17:48:55

使用 this 来引用当前元素,而不是循环中的 $("a"),如下所示:

$(this).after("<span> <a href='" + newURL + "" + ID + "'>"+ newPlace + "</a></span>");

这是更新/工作演示。任何时候你在 .each() 中,你都可以使用this 是当前 DOM 元素,使用 $("a") 选择所有 锚点,创建 n^2 链接。

Instead of $("a") in your loop, use this to reference the current element, like this:

$(this).after("<span> <a href='" + newURL + "" + ID + "'>"+ newPlace + "</a></span>");

Here's the updated/working demo. Any time you're inside a .each() you can use this which is the current DOM element, using $("a") selects all anchors, creating n^2 links.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文