我有以下 html 标记
<div class="title-wrap">
<span class="title">Hello World</span>
<br/>
This title is about Hello World
</div>
我想定位文本'This title is about Hello World'
但是我不知道如何在不包括跨度的情况下做到这一点?是否可以使用这种格式的 html 来实现这一点?
我试过使用
var test = (jQuery('.title-wrap').text() || '' );
alert (test);
但这会返回
Hello World
This title is about Hello World
如this fiddle所示。