作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我有以下 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': '…read more'
})).after($('<p>', {
'html': 'other content'
})).next().next().prepend($('<a>', {
'name': 'more'
}));
关于jquery 添加文本和 anchor 链接到段落,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4652702/
我正在开发一个 voip 调用应用程序。我需要做的是在接到来电时将 Activity 带到前台。我在应用程序中使用 Twilio,并在收到推送消息时开始调用。 问题是我试图在接到任何电话时显示 Act
我是一名优秀的程序员,十分优秀!