jQuery在div中提取文本但不在p标签中

在下面的代码中,我想将一个变量放在div的文本中,但不是p标签内的内容:

  
I want to grab this text

From a cool person - My Date goes here - A Review

另外我想只拉它的前250个字符,如果可能的话!

我找到了这个教程: http : //viralpatel.net/blogs/2011/02/jquery-get-text-element-without-child-element.html

最后的jsFiddle: http : //jsfiddle.net/w9N8N/3/

试试这个片段:

 $("div.review-content").clone().children('p').remove().end().html().substring(0,250);