gpt4 book ai didi

javascript - 如何从 anchor 标记中提取 href 值并作为文本插入?

转载 作者:行者123 更新时间:2023-12-01 00:34:13 25 4
gpt4 key购买 nike

如果我有 html 代码:

<a href="google.com" class='link'>hi</a>

如何提取 href 值并将其添加为文本:

<a href="google.com" class='link'>hi google.com</a>

我看过很多关于提取 href 值的帖子,但我不确定如何将其作为文本插入。谢谢。

最佳答案

你可以这样做:

$('.link').text(function() {
return $(this).text() + " " + $(this).attr("href");
})

演示

$('.link').text(function() {
return $(this).text() + " " + $(this).attr("href");
})
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<a href="google.com" class='link'>hi</a>

关于javascript - 如何从 anchor 标记中提取 href 值并作为文本插入?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58270846/

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