要素のすべての子孫テキストノードをjQueryコレクションとして取得したいと思います。それを行う最良の方法は何ですか?
要素のすべての子孫テキストノードを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()
。1.8以降andSelf()
では非推奨ですaddBack()
。
これは純粋な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);
document.getElementById()
あなたの意味するところなら、あなたは最初に電話することができます:var div = document.getElementById("foo"); var textNodes = getTextNodesIn(div);
.contents()
とにかく、それを使用すると、iframeも検索されることになります。どのようにしてバグになるのかわかりません。
Jaucoはコメントで良い解決策を投稿したので、ここにコピーします。
$(elem)
.contents()
.filter(function() {
return this.nodeType === 3; //Node.TEXT_NODE
});
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>
受け入れられたフィルター機能で多くの空のテキストノードを取得していました。空白以外のテキストノードを選択することだけに関心があるnodeValue
場合は、filter
関数に条件を追加してみてください$.trim(this.nodevalue) !== ''
。
$('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);
});
すべての子が要素ノードまたはテキストノードのいずれかであると想定できる場合、これは1つの解決策です。
すべての子テキストノードを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();
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)}
Unminified Javascriptバージョン:http ://pastebin.com/cX3jMfuD
これはクロスブラウザで、小さなArray.indexOf
ポリフィルがコードに含まれています。
私は同じ問題を抱えており、それで解決しました:
コード:
$.fn.nextNode = function(){
var contents = $(this).parent().contents();
return contents.get(contents.index(this)+1);
}
使用法:
$('#my_id').nextNode();
に似てnext()
いますが、テキストノードも返します。