jQuery中的关系查找方法

目录

  • 一、jQuery关系查找方法
  • 二、jQuery其他关系查找方法

一、jQuery关系查找方法
  • $(this):在原生的DOM操作中,事件函数内部都有一个this关键字指向的就是触发事件的事件源; 在jQuery中将this关键字传递给$()方法,得到的就是指向自己的jQuery对象,这样就可以使用jQuery方法了.
  • parent()父级:jQuery对象都有一个parent()方法,得到的是自己的父级,父级得到的也是一个jQuery对象,可以直接继续打点调用jQuery方法和属性
  • children()子级:可以得到自己的所有子级元素组成的jQuery对象; 得到的子级组成的jQuery对象可以继续调用jQuery方法和属性
    • children()可以传递参数,参数是字符串格式的选择器,在选中所有子级的情况下,保留满足选择器的部分,进行二次选择.
  • siblings()兄弟:jQuery对象通过调用siblings()方法可以得到除了自己以外的所有同级元素(兄弟)组成的jQuery对象,找到的只能是亲的兄弟,不能是旁系(叔叔家)的兄弟
    • siblings()方法的到的jQuery对象可以进行二次选择,通过给参数传递字符串格式得到选择器
*{margin: 0; padding: 0; }.box{width: 400px; height: 60px; border: 1px solid #000; margin-top: 2px; }.box p,.box h2{float: left; width: 60px; height: 60px; margin-right: 20px; background-color: rgb(164, 247, 233); }



h2



h2【jQuery中的关系查找方法】



h2



h2


二、jQuery其他关系查找方法
  • find()后代元素:传递一个规定的选择器作为参数,查找范围是jQuery对象的所有后代
兄弟元素
紧邻的兄弟元素方法:
  • next()下一个兄弟
  • prev()前一个兄弟
多选方法:
  • nextAll()后面所有兄弟
  • preAll()前面所有兄弟
*{margin: 0; padding: 0; }.box{border: 1px solid #000; background-color: white; width: 500px; height: 50px; margin-left: 4px; margin-top: 4px; }p{width: 50px; height: 50px; background-color: rgb(185, 185, 185); float: left; margin-right: 8px; }span{float: left; width: 50px; height: 50px; margin-right: 8px; background-color: pink; }









通过传递参数可以进行二次选择,参数是字符串格式的选择器,在前面或后面兄弟中选中符合选择器规定的部分。
parents()祖先级
通过该方法得到的是指定对象的包含body在内的所有祖先级元素组成的jQuery对象
通过传参进行二次选择,参数位置是字符串格式的选择器
代码示例:
//实现点击一个子级标签,自己变红色,使它的祖先级变成蓝色 // parents() 查找包含body在内的祖先级 // $(this).css("background-color","red") // .parents().css("background-color","skyblue")// parents()传参数,可以筛选去掉不是div的元素 $(this).css("background-color", "red").parents("div").css("background-color", "skyblue")})

到此这篇关于jQuery中的关系查找方法的文章就介绍到这了,更多相关jQuery关系查找内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

    推荐阅读