gpt4 book ai didi

jquery - 在jquery中的anchor中添加span标签

转载 作者:行者123 更新时间:2023-11-30 23:54:32 27 4
gpt4 key购买 nike

如何在 anchor 内添加span标签,并更改它

<a href="somewhere.html">Here is the link to somewhere.</a>

使用 jquery 实现此目的

<a href="somewhere.html">
<span>Here is the span content.</span>
Here is the link to somewhere.
</a>

最佳答案

试试这个:

$('a').each(function() {
$(this).prepend('<span>This is the span content</span>');
});

这将在页面上每个 a 元素的开头添加一个 span 标记。如果您想限制对某些特定元素的修改,请向它们添加一个类并使用类似 $('a.myclass').each(...

关于jquery - 在jquery中的anchor中添加span标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2013710/

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