この記事の例では、jquery トラバーサル関数 Brothers() の使用法について説明します。参考のために皆さんと共有してください。詳細は次のとおりです:
兄弟([expr])
一致するすべての要素のセット内の各要素のすべての兄弟要素のセットを取得します。一致する要素のコレクションを返します
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> <html> <head> <script src="jquery.js"></script> <script> $(document).ready(function(){ var len = $(".hilite").siblings().css("color", "red").length; $("b").text(len); }); </script> <style> ul { float:left; margin:5px; font-size:16px; font-weight:bold; } p { color:blue; margin:10px 20px; font-size:16px; padding:5px; font-weight:bolder; } .hilite { background:yellow; } </style> </head> <body> <ul> <li>One</li> <li>Two</li> <li class="hilite">Three</li> <li>Four</li> </ul> <ul> <li>Five</li> <li>Six</li> <li>Seven</li> </ul> <ul> <li>Eight</li> <li class="hilite">Nine</li> <li>Ten</li> <li class="hilite">Eleven</li> </ul> <p>Unique siblings: <b></b></p> </body> </html>
は、特別なスタイルの「hilite」要素を含むすべての兄弟要素のセットを取得します。以下は一致する要素のセットです
<li>One</li> <li>Two</li> <li>Four</li> <li>Eight</li> <li class="hilite">Nine</li> <li>Ten</li> <li class="hilite">Eleven</li>
この記事が jQuery プログラミングのすべての人に役立つことを願っています。