1

我有这个代码:

<div class="bodytext1typeenc">Ce qu’il faut retenir
    <div class="al">Budget «solidarités».</div>
</div>

我只想得到“Ce qu'il faut retenir”。我试过这个:

$('.bodytext1typeenc').text() // --> doesn't work.
$('.bodytext1typeenc').remove('.al') //  --> doesn't work.

请问有什么帮助吗?谢谢 !

4

3 回答 3

5

您可以克隆,删除孩子并获取文本。见下文,

var $clone = $('.bodytext1typeenc').clone();
$clone.children().remove()
$clone.text(); //should return the div's text

注意:如果您不想保留原始内容,则不需要克隆。

演示:http: //jsfiddle.net/PX2yA/

于 2013-10-18T14:12:16.780 回答
1

嘿试试这个,而不是你想要做的是克隆你的元素然后删除你的子元素

http://jsfiddle.net/HgdyG/

$(".bodytext1typeenc")
        .clone()    //clone the element
        .children() //select all the children
        .remove()   //remove all the children
        .end()  //again go back to selected element
        .text();

如果您要经常使用它,您可以创建一个像这样的简单扩展

jQuery.fn.noChild= function() {

    return $(this).clone()
            .children()
            .remove()
            .end()
            .text();

};

然后运行

$(".bodytext1typeenc").noChild();
于 2013-10-18T14:13:40.853 回答
0

您可以使用 contents() 并过滤掉 noteType TEXT_NODE (3)

var val = $('.bodytext1typeenc').contents().filter(function() {
  return this.nodeType == 3;
}).text();
val = $.trim(val);

alert('"' + val + '"'); // "Ce qu’il faut retenir"

演示:http: //jsbin.com/AsilIpo/1/

于 2013-10-18T14:22:31.200 回答