使用以下模板如何获得“获取此文本”
<h1 class="classA classB">
Obtain this text
<span class="unwanted">
unwanted text
</span>
</h1>
我试过$('.classA.classB:not(.unwanted)')
了,但我没有多余的东西就拿回来了。
使用以下模板如何获得“获取此文本”
<h1 class="classA classB">
Obtain this text
<span class="unwanted">
unwanted text
</span>
</h1>
我试过$('.classA.classB:not(.unwanted)')
了,但我没有多余的东西就拿回来了。
jsFiddle
克隆它,放下孩子,获取文本:
$('.classA').clone().find('.unwanted').remove().end().text();
$("#foo")
.clone() //clone the element
.children() //select all the children
.remove() //remove all the children
.end() //again go back to selected element
.text(); //get the text of element
.remove() 接受一个选择器,所以你可以做类似的事情.remove('.unwanted')
源http://viralpatel.net/blogs/jquery-get-text-element-without-child-element/
演示
http://viralpatel.net/blogs/demo/jquery/get-text-without-child-element/
提问前请先google