如何從 jQuery 中的父級中選擇所有子級(任何級別)?
要從 jQuery 中的父級中選擇所有子級,請使用 find() 方法。你可以嘗試執行以下程式碼來選擇任何級別的所有子級 -
示例
<!DOCTYPE html> <html> <head> <style> .myclass * { display: block; border: 2px solid lightgrey; color: lightgrey; padding: 5px; margin: 15px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $('ul').find('*').css({"color": "red", "border": "2px solid green"}); }); </script> </head> <body> <div class="myclass"> <div style="width:400px;">div - great-grandparent <ul>ul <li>li- child - level 1 <ul>ul- child - level 2 <li>li- child - level 3</li> <li>li- child - level 3</li> </ul> </li> </ul> </div> </div> </body> </html>
廣告