gpt4 book ai didi

jquery - 使用 JQuery 添加 html

转载 作者:行者123 更新时间:2023-12-01 03:54:00 26 4
gpt4 key购买 nike

我有这个:

        <span class="mad">2</span> Stuff

</li>

我想要这个

            <a href="/My/Website"><span class="mad">2</span> Website</a>

</li>

有人可以给我一些 jquery 来做到这一点吗?另外,“/My/Website”必须针对每个 li 更改为不同的内容...这可能吗?

最佳答案

使用each,你可以给每个li span.mad一个不同的网站url

$("li span.mad").each(function(i,e) {
$(e).html(
"<a href='/My/Website/"+ (i+1) +"'>"+$(e).html()+"</a>");
});

http://jsfiddle.net/6EzDs/

(或使用换行)

$("li span.mad").each(function(i,e) {
$(e).wrap("<a href='/My/Website/"+ (i+1) +"' />");
});

关于jquery - 使用 JQuery 添加 html,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4950545/

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