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

时间:2008-11-18 13:45:09

标签: javascript jquery dom

我想获取元素的所有后代文本节点,作为jQuery集合。最好的方法是什么?

11 个答案:

答案 0 :(得分:254)

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()。从{1.8}开始,andSelf()已弃用addBack()

与纯DOM方法相比,这有点效率低,并且必须包含ugly workaround for jQuery's overloading of its contents() function(感谢注释中的@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);

答案 1 :(得分:205)

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

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

答案 2 :(得分:16)

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

答案 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 :(得分: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);
        });

答案 5 :(得分:3)

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

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

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

要删除包含非文本子项的原始元素的副本:

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

答案 6 :(得分:2)

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

<强>用法


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

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

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

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

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

jQuery('body').descendants();

Coffeescript Original

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填充。

答案 7 :(得分:1)

也可以这样做:

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

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

答案 8 :(得分:0)

如果要删除所有标记,请尝试此

<强>功能

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

用法:

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

答案 9 :(得分:0)

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

代码:

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

用法:

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

next()类似,但也返回文本节点。

答案 10 :(得分:0)

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

例如,这会将pre标记中包含TD的所有文本内容包含在内,并且没有任何问题。

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