你可以这样做:
$('ul.list-unstyled > li:nth-child(3) > p') .contents() .filter(function() { return this.nodeType === Node.TEXT_NODE; }) .text() .trim();
它仅获取文本,因此它将忽略任何其他元素,请阅读有关
contents