私は要素のすべての子孫のテキストノードをjQueryのコレクションとして取得したいと思います。そのための最善の方法は何ですか?
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);
Jaucoがコメントに良い解決策を投稿したので、ここにコピーします。
$(elem)
.contents()
.filter(function() {
return this.nodeType === 3; //Node.TEXT_NODE
});
$('body').find('*').contents().filter(function () { return this.nodeType === 3; });
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>
私は、受け入れられたフィルタ機能を持つたくさんの空のテキストノードを得ていました。空白以外の文字列を含むテキストノードを選択したいだけの場合は、単純な$.trim(this.nodevalue) !== ''
のように、nodeValue
関数に条件付きfilter
条件を追加してみてください。
$('element')
.contents()
.filter(function(){
return this.nodeType === 3 && $.trim(this.nodeValue) !== '';
});
あるいは、コンテンツが空白のように見えるがそうでないという奇妙な状況(例えば、ハイフンの­
文字、改行の\n
、タブなど)を避けるために、あなたは正規表現を使うことを試みることができます。たとえば、\S
は空白以外の文字と一致します。
$('element')
.contents()
.filter(function(){
return this.nodeType === 3 && /\S/.test(this.nodeValue);
});
もしすべての子が要素ノードかテキストノードのどちらかであると仮定することができれば、これが一つの解決策です。
すべての子テキストノードをjqueryコレクションとして取得するには
$('selector').clone().children().remove().end().contents();
テキスト以外の子が削除された元の要素のコピーを取得するには、次の手順を実行します。
$('selector').clone().children().remove().end();
何らかの理由で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
ポリフィルがコードに含まれています。
このようにすることもできます:
var textContents = $(document.getElementById("ElementId").childNodes).filter(function(){
return this.nodeType == 3;
});
上記のコードは、特定の要素の直接の子の子ノードからtextNodeをフィルタリングします。
すべてのタグを削除したい場合は、これを試してください
機能:
String.prototype.stripTags=function(){
var rtag=/<.*?[^>]>/g;
return this.replace(rtag,'');
}
用法:
var newText=$('selector').html().stripTags();
私は同じ問題を抱えていて、それでそれを解決しました:
コード:
$.fn.nextNode = function(){
var contents = $(this).parent().contents();
return contents.get(contents.index(this)+1);
}
使用法:
$('#my_id').nextNode();
next()
に似ていますが、テキストノードも返します。
私にとって、普通の.contents()
はテキストノードを返すように働くように見えました、あなたがそれらがテキストノードであることを知っているようにあなたのセレクターに注意しなければなりません。
たとえば、これは私のテーブルのTDのすべてのテキストコンテンツをpre
タグでラップし、問題はありませんでした。
jQuery("#resultTable td").content().wrap("<pre/>")