Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
与えられた: X -> B -> C -> D -> ChildjQuery に、セレクターに一致する最初のノードまでのすべての祖先を返すようにします。
X -> B -> C -> D -> Child
jQueryは とは対照的に$(Child).parents(X)のみを返します。このアレイを手動で構築するために使用できることはわかっていますが、より良い方法はありますか?XX, B, C, Dparent()
$(Child).parents(X)
X
X, B, C, D
parent()
おっとっと。それを見つけた:$(Child).parentsUntil(X)
$(Child).parentsUntil(X)
ソース: http://api.jquery.com/parentsUntil/