jquery 选择器帮助
我有这个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个: http://jsfiddle.net/mTn7G/
.contents()
方法获取所有子元素,包括文本节点,而 < a href="http://api.jquery.com/last/" rel="nofollow noreferrer">.last()
会给你最后一个,而.text()
将返回其文本内容。Try this: http://jsfiddle.net/mTn7G/
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.