jQuery 中 jQuery.children() 方法有什么用?
如果你想返回选定元素的所有直接子元素,那么使用 jQuery.children() 方法,
示例
你可以尝试运行以下代码来了解如何在 jQuery 中使用 jQuery.children() 方法,
<!DOCTYPE html> <html> <head> <style> .myclass * { display: block; border: 2px solid blue; color: black; padding: 3px; margin: 10px; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("ol").children().css({"color": "red", "border": "5px solid red"}); }); </script> </head> <body class="myclass">body <div style="width:600px;">div <ol>ol <li>li - This is the child <span>span</span> </li> </ol> </div> </body> </html>
广告