层级选择器
1. child Selector("parent > child")子元素选择器
1. jQuery("parent > child")
1. parent : 任何有效的选择器
2. child :用来筛选子元素的选择器
2. 选择所有指定parent元素中指定的child直接的子元素
3. 注 : 直接的 不会选中里面的元素
2. descendant Selector 所有后代选择器
1. jQuery("ancestor")
1. ancestor :任何有效的选择器
2. descendant : 所有后代的选择器
2. 选择给定的祖先元素所有后代选择器
3. next adjacent Selector ("prev + next") 相邻选择器
1. jQuery("a + p") // a标签相邻的标签
4. next siblings Selector("prev ~ sibling") 相同等级的兄弟
1. jQuery("div ~ a") // 选择div的兄弟之后的所有a元素
原文地址:https://www.cnblogs.com/fuyi2345/p/11391807.html
时间: 2024-11-13 10:43:42