gpt4 book ai didi

javascript - 使用 jquery 或 javascript 从 html 文件中检索所有超链接

转载 作者:行者123 更新时间:2023-11-30 13:17:38 27 4
gpt4 key购买 nike

我需要使用 jquery 检索当前 html 页面中存在的所有超链接。我如何使用正则表达式来做到这一点?我还可以在 javascript 中使用集合来存储列表中的所有 href 吗?

最佳答案

您可以使用简单的每个循环:

// For each <a href=""> tag...
$('a').each(function(){
// Get the url
var href = $(this).attr('href')
// alert it or do sth with it
alert( href );
})

关于javascript - 使用 jquery 或 javascript 从 html 文件中检索所有超链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11429471/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com