jquery 选择器帮助

发布于 2024-09-17 18:24:42 字数 178 浏览 3 评论 0原文

我有这个 html 块:

<p><strong>this is the title</strong>this is the content</p>

如何使用 jQuery 只获取“这是内容”字符串?

谢谢 :)

i have this html block:

<p><strong>this is the title</strong>this is the content</p>

how do i get only the "this is the content" string with jQuery?

thank you :)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

来日方长 2024-09-24 18:24:42

试试这个: http://jsfiddle.net/mTn7G/

var text = $('p').contents().last().text();

.contents() 方法获取所有子元素,包括文本节点,而 < a href="http://api.jquery.com/last/" rel="nofollow noreferrer">.last() 会给你最后一个,而 .text() 将返回其文本内容。

Try this: http://jsfiddle.net/mTn7G/

var text = $('p').contents().last().text();

The .contents() method gets all child elements, including text nodes, while .last() will give you the last one, and .text() will return its text content.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文