文章目录 层级选择器 多选择器 属性选择器 往期回顾 层级选择器 <h1 id="txt">中国移动</h1> <h1 class="c1">中国移动 <div class="c2"> <a>中国移动</a> </div> </h1> <h1 class="c2">广东移动</h1> // 选则c1类下的c2类下的a标签 $(".c1 .c2 a").text("广西移动") eg: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <!--如果像通过-->