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-12-2019

113 次浏览

助力你的 事业

完成课程即可获得认证

开始学习
广告