gpt4 book ai didi

jquery 添加文本和 anchor 链接到段落

转载 作者:行者123 更新时间:2023-12-01 04:28:24 25 4
gpt4 key购买 nike

您好,我有以下 jQuery 代码,它在第二段之后分割一些内容,在中间添加一些其他内容,然后在末尾显示其余内容。

jQuery('#bookDescription > p').slice(2).appendTo('#bookDescription');

我需要在第二段末尾添加一个“阅读更多”链接,该链接将链接到第三段并锚定链接。通常,仅使用 html 就可以轻松设置,但不确定如何使用 jQuery 来完成此操作。

所以,现在我有这样的东西(由上面的 jQuery 完成:

Paragraph One
Paragraph Two
Other content
Paragraph Three
Paragraph ....

我想补充一点:

Paragraph One
Paragraph Two ... Red More
Other content
<a name="linkFromReadMore"></a>Paragraph Three
Paragraph ....

最佳答案

你可以这样做:

$('p:nth-child(2)').append($('<a>', {
'href': '#more',
'html': '&hellip;read more'
})).after($('<p>', {
'html': 'other content'
})).next().next().prepend($('<a>', {
'name': 'more'
}));

demo

关于jquery 添加文本和 anchor 链接到段落,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4652702/

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