1

使用以下模板如何获得“获取此文本”

<h1 class="classA classB">
        Obtain this text 
        <span class="unwanted">
            unwanted text
        </span>
</h1>

我试过$('.classA.classB:not(.unwanted)')了,但我没有多余的东西就拿回来了。

4

2 回答 2

2

jsFiddle
克隆它,放下孩子,获取文本:

$('.classA').clone().find('.unwanted').remove().end().text();
于 2013-03-04T01:37:00.603 回答
2
$("#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

于 2013-03-04T01:38:33.533 回答