帮助jquery选择器

时间:2010-09-07 22:43:34

标签: jquery jquery-selectors

我有这个html块:

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

如何只使用jQuery获取“this is the content”字符串?

谢谢你:)

1 个答案:

答案 0 :(得分:2)

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

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

.contents()方法获取所有子元素,包括文本节点,而.last()将为您提供最后一个,.text()将返回其文本内容。