如何使用jQuery选择文本节点?


Answers:


261

jQuery对此没有方便的功能。您需要结合使用contents(),将仅提供子节点,但包括文本节点,与结合find(),将提供所有后代元素,但不提供文本节点。这是我想出的:

var getTextNodesIn = function(el) {
    return $(el).find(":not(iframe)").addBack().contents().filter(function() {
        return this.nodeType == 3;
    });
};

getTextNodesIn(el);

注意:如果您使用的是jQuery 1.7或更早的版本,则上面的代码将不起作用。要解决此问题,请替换addBack()andSelf()andSelf()不赞成使用addBack()从1.8开始。

与纯DOM方法相比,这效率低下,并且必须为jQuery重载其contents()功能提供一个丑陋的解决方法(感谢注释中的@rabidsnail指出了这一点),因此这是使用简单递归函数的非jQuery解决方案。该includeWhitespaceNodes参数控制是否在输出中包含空格文本节点(在jQuery中,它们会自动过滤掉)。

更新:修复了includeWhitespaceNodes错误时的错误。

function getTextNodesIn(node, includeWhitespaceNodes) {
    var textNodes = [], nonWhitespaceMatcher = /\S/;

    function getTextNodes(node) {
        if (node.nodeType == 3) {
            if (includeWhitespaceNodes || nonWhitespaceMatcher.test(node.nodeValue)) {
                textNodes.push(node);
            }
        } else {
            for (var i = 0, len = node.childNodes.length; i < len; ++i) {
                getTextNodes(node.childNodes[i]);
            }
        }
    }

    getTextNodes(node);
    return textNodes;
}

getTextNodesIn(el);

可以传入的元素是div的名称吗?
crosenblum 2011年

@crosenblum:document.getElementById()如果那是您的意思,那么您可以先打个电话:var div = document.getElementById("foo"); var textNodes = getTextNodesIn(div);
Tim Down

由于jQuery中的错误,如果el中有任何iframe,则需要使用.find(':not(iframe)')而不是.find('*')。
bobpoekert 2012年

@rabidsnail:我认为,.contents()无论如何使用都意味着它也会在iframe中进行搜索。我不知道这怎么可能是一个错误。
罗宾·马本

bugs.jquery.com/ticket/11275是否实际上是一个错误似乎尚待辩论,但如果您在包含未包含iframe的iframe的节点上调用find('*')。contents(),则该错误是否值得讨论如果将其添加到dom中,则在不确定的时间点会出现异常。
bobpoekert 2012年

209

Jauco在评论中发布了一个很好的解决方案,所以我在这里复制它:

$(elem)
  .contents()
  .filter(function() {
    return this.nodeType === 3; //Node.TEXT_NODE
  });

34
实际上$(elem).contents().filter(function(){return this.nodeType == Node.TEXT_NODE;}); 够了
Jauco

37
IE7并未全局定义Node,因此不幸的是,您必须使用this.nodeType == 3:stackoverflow.com/questions/1423599/node-textnode-and-ie7
Christian Oudard 09年

17
这是否不仅返回作为元素直接子元素的文本节点,还不返回OP请求的元素后代元素?
Tim Down

7
当文本节点深入嵌套在其他元素中时,此方法将不起作用,因为content
minhajul 2015年

1
@Jauco,不,还不够!as .contents()仅返回直接子节点
minhajul

17
$('body').find('*').contents().filter(function () { return this.nodeType === 3; });

6

jQuery.contents()可用于jQuery.filter查找所有子文本节点。稍作改动,您就可以找到孙子文本节点。无需递归:

$(function() {
  var $textNodes = $("#test, #test *").contents().filter(function() {
    return this.nodeType === Node.TEXT_NODE;
  });
  /*
   * for testing
   */
  $textNodes.each(function() {
    console.log(this);
  });
});
div { margin-left: 1em; }
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>

<div id="test">
  child text 1<br>
  child text 2
  <div>
    grandchild text 1
    <div>grand-grandchild text 1</div>
    grandchild text 2
  </div>
  child text 3<br>
  child text 4
</div>

jsFiddle


4

我得到了很多带有可接受的过滤器功能的空白文本节点。如果您只想选择包含非空格的文本节点,请尝试向函数中添加nodeValue条件filter,例如简单的$.trim(this.nodevalue) !== ''

$('element')
    .contents()
    .filter(function(){
        return this.nodeType === 3 && $.trim(this.nodeValue) !== '';
    });

http://jsfiddle.net/ptp6m97v/

或者要避免出现内容看起来像空白但不是空白的奇怪情况(例如,软连&shy;字符,换行符\n,制表符等),则可以尝试使用正则表达式。例如,\S将匹配任何非空白字符:

$('element')
        .contents()
        .filter(function(){
            return this.nodeType === 3 && /\S/.test(this.nodeValue);
        });

3

如果可以假设所有子级都是元素节点或文本节点,那么这就是一种解决方案。

要将所有子文本节点作为jquery集合:

$('selector').clone().children().remove().end().contents();

要获取删除了非文本子元素的原始元素的副本,请执行以下操作:

$('selector').clone().children().remove().end();

1
刚注意到Tim Down对另一个答案的评论。此解决方案仅获取直接子代,而不是所有后代。
colllin 2011年

2

由于某种原因contents(),它对我不起作用,所以如果它对您不起作用,那么我创建了一个解决方案,jQuery.fn.descendants了一个选项,可以选择是否包含文本节点

用法


获取所有后代,包括文本节点和元素节点

jQuery('body').descendants('all');

获取所有仅返回文本节点的后代

jQuery('body').descendants(true);

获取所有仅返回元素节点的后代

jQuery('body').descendants();

Coffeescript原文

jQuery.fn.descendants = ( textNodes ) ->

    # if textNodes is 'all' then textNodes and elementNodes are allowed
    # if textNodes if true then only textNodes will be returned
    # if textNodes is not provided as an argument then only element nodes
    # will be returned

    allowedTypes = if textNodes is 'all' then [1,3] else if textNodes then [3] else [1]

    # nodes we find
    nodes = []


    dig = (node) ->

        # loop through children
        for child in node.childNodes

            # push child to collection if has allowed type
            nodes.push(child) if child.nodeType in allowedTypes

            # dig through child if has children
            dig child if child.childNodes.length


    # loop and dig through nodes in the current
    # jQuery object
    dig node for node in this


    # wrap with jQuery
    return jQuery(nodes)

插入Javascript版本

var __indexOf=[].indexOf||function(e){for(var t=0,n=this.length;t<n;t++){if(t in this&&this[t]===e)return t}return-1}; /* indexOf polyfill ends here*/ jQuery.fn.descendants=function(e){var t,n,r,i,s,o;t=e==="all"?[1,3]:e?[3]:[1];i=[];n=function(e){var r,s,o,u,a,f;u=e.childNodes;f=[];for(s=0,o=u.length;s<o;s++){r=u[s];if(a=r.nodeType,__indexOf.call(t,a)>=0){i.push(r)}if(r.childNodes.length){f.push(n(r))}else{f.push(void 0)}}return f};for(s=0,o=this.length;s<o;s++){r=this[s];n(r)}return jQuery(i)}

未缩小的Javascript版本:http://pastebin.com/cX3jMfuD

这是跨浏览器,Array.indexOf代码中包含一个小的polyfill。


1

也可以这样完成:

var textContents = $(document.getElementById("ElementId").childNodes).filter(function(){
        return this.nodeType == 3;
});

上面的代码从给定元素的直接子级子节点中过滤textNodes。


1
...,但不是所有后代子节点(例如,文本节点,即作为原始元素的子元素的元素的子元素)。
Tim Down

0

如果要剥离所有标签,请尝试此操作

功能:

String.prototype.stripTags=function(){
var rtag=/<.*?[^>]>/g;
return this.replace(rtag,'');
}

用法:

var newText=$('selector').html().stripTags();

0

对我来说,普通 .contents()似乎可以返回文本节点,只需要小心选择器,以便您知道它们将是文本节点。

例如,这用pre标签将TD的所有文本内容包装在表中,没有问题。

jQuery("#resultTable td").content().wrap("<pre/>")

0

我遇到了同样的问题,并通过以下方法解决了问题:

码:

$.fn.nextNode = function(){
  var contents = $(this).parent().contents();
  return contents.get(contents.index(this)+1);
}

用法:

$('#my_id').nextNode();

就像next()而且还返回文本节点。


By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.