我有这个html块:
<p><strong>this is the title</strong>this is the content</p>
如何只使用jQuery获取“this is the content”字符串?
谢谢你:)答案 0 :(得分:2)
试试这个: http://jsfiddle.net/mTn7G/
var text = $('p').contents().last().text();
.contents()
方法获取所有子元素,包括文本节点,而.last()
将为您提供最后一个,.text()
将返回其文本内容。