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>

更新于: 09-Dec-2019

113 次浏览

开启你的职业生涯

通过完成课程获得认证

开始学习
广告