• 技术文章 >Web开发 >JavaScript

    jquery向下遍历dom树的两种方法

    宋雪维宋雪维2021-02-01 09:53:29原创1528

    小编介绍过jquery向上遍历dom树的三种方法jquery遍历dom树除了按照向上的顺序进行遍历。也可以按照向下的顺序进行遍历。本文介绍jquery向下遍历dom树的两种方法:1、children()方法;2、find()方法。

    1、children()方法选取被选元素的所有直接子元素。

    $(document).ready(function () {
       
       $("#childBtn2").click(function () {
           $("#container").children("ul").css({border:"8px solid black"});
       });
    }); 
    //向下遍历时,children()方法只能访问子元素,括号内只能添加子元素,添加其他没用

    2、find()方法选取被选元素的后代元素,直到最后一个后代。

    $(document).ready(function () {
       
       $("#findBtn").click(function () {
           $("#container").find("ul").css({border:"8px solid blueviolet"});
       });
    }); 
    //而find()方法可以访问孙元素以及更下一级元素

    以上就是jquery向下遍历dom树的两种方法,需要注意children() 方法只会向下一级对 DOM 树进行遍历哦~更多JavaScript学习推荐:JavaScript教程

    专题推荐:js jquery
    上一篇:jquery中parent()和parents()有什么区别? 下一篇:jQuery中遍历子元素的children()方法如何使用?

    相关文章推荐

    • python复制文件的方法整理• python中使用os.path.split()切片• os.system在python中如何调用命令• python中os.remove()的使用注意• python os.listdir()解决乱码

    全部评论我要评论

    © 2021 Python学习网 苏ICP备2021003149号-1

  • 取消发布评论
  • 

    Python学习网