jQuery
【推荐】2019 Java 开发者跳槽指南.pdf(吐血整理) >>> 基本选择器 选择器 实例 选取 元素选择器 $("p") 在页面中选取所有 <p> 元素 #id 选择器 $("#test") 页面中元素的 id 应该是唯一的,所以您要在页面中选取唯一的元素需要通过 #id 选择器 .class 选择器 $(".test") 通过指定的 class 查找元素 层次选择器 选择器 实例 选取 parent > child $("div > p") <div> 元素的直接子元素的所有 <p> 元素,只选择子元素的 parent descendant $("div p") <div> 元素的后代的所有 <p> 元素,包含子元素、孙子元素 element + next $("div + p") 每个 <div> 元素相邻的同级的下一个 <p> 元素 element ~ siblings $("div ~ p") <div> 元素同级的所有 <p> 元素 $("#two").siblings("div") 选择 id 为 two 的元素所有 div 兄弟元素 $("#one").nextAll("span:first") 选择 id 为 one 的下一个 span 元素 $("#two").prevAll("div") 选择 id 为 two 的元素前边的所有的 div 兄弟元素