This question already has answers here:
replace anchor text with jquery
                                
                                    (5个答案)
                                
                        
                6个月前关闭。
            
        

如果我有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/

10-09 17:50