web-dev-qa-db-ja.com

jQueryを使ってテキストノードを選択する方法

私は要素のすべての子孫のテキストノードをjQueryのコレクションとして取得したいと思います。そのための最善の方法は何ですか?

377

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()は1.8以降のaddBack()のために廃止予定です

これは純粋なDOMメソッドと比較するといくぶん非効率的で、 jQueryがそのcontents()関数をオーバーロードすることに対する醜い回避策 (それを指摘するコメントの@rabidsnailのおかげで)を含まなければなりません。単純な再帰関数を使った解法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);
254
Tim Down

Jaucoがコメントに良い解決策を投稿したので、ここにコピーします。

$(elem)
  .contents()
  .filter(function() {
    return this.nodeType === 3; //Node.TEXT_NODE
  });
205
$('body').find('*').contents().filter(function () { return this.nodeType === 3; });
16
He Nrik

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

6
Salman A

私は、受け入れられたフィルタ機能を持つたくさんの空のテキストノードを得ていました。空白以外の文字列を含むテキストノードを選択したいだけの場合は、単純な$.trim(this.nodevalue) !== ''のように、nodeValue関数に条件付きfilter条件を追加してみてください。

$('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);
        });
4
Alex W

もしすべての子が要素ノードかテキストノードのどちらかであると仮定することができれば、これが一つの解決策です。

すべての子テキストノードをjqueryコレクションとして取得するには

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

テキスト以外の子が削除された元の要素のコピーを取得するには、次の手順を実行します。

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

何らかの理由でcontents()がうまくいかなかったので、うまくいかなかった場合は、ここで私が作った解決策があります。テキストノードを含めるかどうかを指定するオプションを付けてjQuery.fn.descendantsを作成しました。

使い方


テキストノードと要素ノードを含むすべての子孫を取得する

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

すべての子孫がテキストノードのみを返すようにする

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

すべての子孫が要素ノードのみを返すようにする

jQuery('body').descendants();

オリジナルのコーヒースクリプト

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ポリフィルがコードに含まれています。

2
iConnor

このようにすることもできます:

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

上記のコードは、特定の要素の直接の子の子ノードからtextNodeをフィルタリングします。

1
Mr_Green

すべてのタグを削除したい場合は、これを試してください

機能:

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

用法:

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

私は同じ問題を抱えていて、それでそれを解決しました:

コード:

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

使用法:

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

next()に似ていますが、テキストノードも返します。

0
Guillermo

私にとって、普通の.contents()はテキストノードを返すように働くように見えました、あなたがそれらがテキストノードであることを知っているようにあなたのセレクターに注意しなければなりません。

たとえば、これは私のテーブルのTDのすべてのテキストコンテンツをpreタグでラップし、問題はありませんでした。

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