如何使用 jQuery 从页面上的每个 href 获取值?
var href = $('a[target="_blank"]').attr('href'); $('a[target="_blank"]').attr('title', 'Öppnas i en ny flik; ' + href);
假设我在 header.php 文件中有一个带有 target="_blank"
的链接。在 donate.php 文件中,我有另一个带有 target="_blank"
的链接。我上面向您展示的代码仅从 header.php 文件中的链接获取 href 值。如何获取当前页面上每个链接的 href 值?
如果我将鼠标光标放在 header.php 中的链接上,它将显示“Öppnas i en ny flik; http:// the-link.nu/”。如果我将鼠标光标放在 donate.php 中的链接上,它将显示“Öppnas i en ny flik; http:// another-link.nu/”。
有帮助解决这个问题吗? :) 提前致谢!
var href = $('a[target="_blank"]').attr('href');
$('a[target="_blank"]').attr('title', 'Öppnas i en ny flik; ' + href);
Let's say I have a link in the header.php file with target="_blank"
. In the donate.php file I have another link with target="_blank"
. The code I show you above does only take the href value from the link in the header.php file. How do I take the href value in every link I have on the current page?
If I have the mouse cursor over the link in header.php, it will show "Öppnas i en ny flik; http://the-link.nu/". If I have the mouse cursor over the link in donate.php, it will show "Öppnas i en ny flik; http://another-link.nu/".
Any help to fix this problem? :)
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 jquery 的每个方法:
use jquery each method:
您只能获取第一个锚点的属性,因为 $.attr() 旨在仅获取第一个匹配元素的值。使用 $.each 可以循环遍历找到的所有元素。
You're only getting the first anchor's attribute because $.attr() is designed to get just the value from the first matched element. Using $.each lets you loop through all of the elements found.