Blogger Information
Blog 26
fans 0
comment 0
visits 21802
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
细说选择器:简单选择器、上下文选择器、伪类选择器、其它选择器
溪边小树
Original
1265 people have browsed it

选择器

1. 简单选择器

1.1 种类

序号 选择器 描述 举例
1 元素选择器 根据元素标签名称进行匹配 div {...}
2 群组选择器 同时选择多个不同类型的元素 h1,h2,h3{...}
3 通配选择器 选择全部元素,不区分类型 * {...}
4 属性选择器 根据元素属性进行匹配 *[...]
5 类选择器 根据元素 class 属性进行匹配 *.active {...}
6 id 选择器 根据元素 id 属性进行匹配 *#top {...}
  • 元素是使用标签和属性进行描述,所以使用标签和属性来选择元素非常自然和直观
  • 以上 6 种,其实可分为二类: 元素选择器和属性选择器, 其它的只是二者的特例罢了
  • 最常用的是: 元素选择器, 类选择器, id 选择器
  • 当 class,id 选择器不限定被修改的元素类型时, 星号”*“可以省略

示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>简单选择器</title>
  7. <style>
  8. /* 使用九宫格来演示简单选择器 */
  9. /* 类选择器:选择一类元素,也属于属性选择器一种,对应着元素中的class */
  10. .container {
  11. width: 300px;
  12. height: 300px;
  13. display: grid;
  14. grid-template-columns: repeat(3, 1fr);
  15. gap: 5px;
  16. }
  17. /* 类选择器 */
  18. .item {
  19. font-size: 2rem;
  20. background-color: lightskyblue;
  21. display: flex;
  22. justify-content: center;
  23. align-items: center;
  24. }
  25. /* 元素选择器 */
  26. body {
  27. background-color: lightcyan;
  28. }
  29. /* 多个类选择器 */
  30. .item.center {
  31. background-color: lightgreen;
  32. }
  33. /* id选择器 */
  34. #first {
  35. background-color: lime;
  36. }
  37. /* id, class可以添加到任何元素上, 前面的元素限定符默认就是*,所以可省略 */
  38. div#first {
  39. background-color: lime;
  40. }
  41. /* 类选择器, class 权重 大于 标签 */
  42. .item#first {
  43. background-color: lightpink;
  44. }
  45. /* id的权重大于class */
  46. *#first.item {
  47. background-color: violet;
  48. }
  49. /* 标签 < class属性 < id属性 */
  50. /* 属性选择器 */
  51. *.item[title="php"] {
  52. background-color: lightcoral;
  53. }
  54. *#first,
  55. .item.center,
  56. .item[title="hello"] {
  57. background-color: black;
  58. color: white;
  59. }
  60. </style>
  61. </head>
  62. <body>
  63. <div class="container">
  64. <div class="item" id="first">1</div>
  65. <div class="item">2</div>
  66. <div class="item" title="php">3</div>
  67. <div class="item">4</div>
  68. <div class="item center">5</div>
  69. <div class="item" title="hello">6</div>
  70. <div class="item">7</div>
  71. <div class="item">8</div>
  72. <div class="item">9</div>
  73. </div>
  74. </body>
  75. </html>

2. 上下文选择器

  • html 文档,看上去就像一颗倒置的”树”,所以是有层级结构的
  • 每一个元素, 在文档中, 都有自己的位置,即上下文关系
  • 所以, 完全可以根据元素的上下文关系,来获取到它们

2.1 一个元素的四种角色

序号 角色 描述
1 祖先元素 拥有子元素,孙元素等所有层级的后代元素
2 父级元素 仅拥有子元素层级的元素
3 后代元素 与其它层级元素一起拥有共同祖先元素
4 子元素 与其它同级元素一起拥有共同父级元素

2.2 四种上下文选择器

序号 选择器 操作符 描述 举例
1 后代选择器 空格 选择当前元素的所有后代元素 div p, body *
2 父子选择器 > 选择当前元素的所有子元素 div > h2
3 同级相邻选择器 + 选择拥有共同父级且相邻的元素 li.red + li
4 同级所有选择器 ~ 选择拥有共同父级的后续所有元素 li.red ~ li

示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>上下文选择器</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. grid-template-columns: repeat(3, 1fr);
  13. gap: 5px;
  14. }
  15. /* 类选择器 */
  16. .item {
  17. font-size: 2rem;
  18. background-color: lightskyblue;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. /* 后代选择器 */
  24. .container div {
  25. border: 1px solid coral;
  26. }
  27. /* 父子选择器,只有外层的div受影响 */
  28. body > div {
  29. border: 3px solid green;
  30. }
  31. /* 使用后代选择器模拟父子选择器 */
  32. /* body div.container {
  33. border: 3px solid green;
  34. } */
  35. /* 同级相邻选择器 */
  36. /* 选择与第5个相邻的,即后面的"一个"元素 */
  37. /* .item.center + .item {
  38. background-color: lightgreen;
  39. } */
  40. /* 同级所有选择器 */
  41. /* 选择与第5个后面的,有共同父级的所有兄弟元素 */
  42. .item.center ~ .item {
  43. background-color: lightgreen;
  44. }
  45. </style>
  46. </head>
  47. <body>
  48. <div class="container">
  49. <div class="item">1</div>
  50. <div class="item">2</div>
  51. <div class="item">3</div>
  52. <div class="item">4</div>
  53. <div class="item center">5</div>
  54. <div class="item">6</div>
  55. <div class="item">7</div>
  56. <div class="item">8</div>
  57. <div class="item">9</div>
  58. </div>
  59. </body>
  60. </html>

3. 伪类选择器

  • 学习之前,先分析上下文选择器的局限性,例如选择同一个父级下的第二个子元素,就没那么简单
  • 而伪类就正好弥补了上下文选择器的短板, 所以伪类,大多数是基于文档中元素结构的
  • : 本意是假的,不存在的意思, 这里是特指, 不需要在元素上添加额外的属性来获取元素
  • : 暗指伪类的级别, 仍然是属于”class”级别, 仍然属于属性选择器范畴,级别高于元素选择器

我们重点放在伪类最重要的应用场景:

场景 描述
结构伪类 根据子元素的位置特征进行选择
表单伪类 根据表单控件状态特征进行选择

3.1 结构伪类

3.1.1 不分组匹配

序号 选择器 描述 举例
1 :first-child 匹配第一个子元素 div :first-child
2 :last-child 匹配最后一个子元素 div :last-child
3 :only-child 选择元素的唯一子元素 div :only-child
4 :nth-child(n) 匹配任意位置的子元素 div :nth-child(n)
5 :nth-last-child(n) 匹配倒数任意位置的子元素 div :nth-last-child(n)

示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>结构伪类: 不分组匹配</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. grid-template-columns: repeat(3, 1fr);
  13. gap: 5px;
  14. }
  15. /* 类选择器 */
  16. .item {
  17. font-size: 2rem;
  18. background-color: lightskyblue;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. /* body , 第一个单元格都 变了 */
  24. /* 为了防止递归,应该在具体的父元素上调用伪类 */
  25. /* :nth-child(1) === :first-child */
  26. .container > :first-child {
  27. /* background-color: wheat; */
  28. }
  29. /* 匹配最后一个 */
  30. .container > :last-child {
  31. /* background-color: lightpink; */
  32. }
  33. /* 匹配任何一个 */
  34. /* 索引是从1开始计算 */
  35. .container > :nth-child(3) {
  36. /* background-color: lightgreen; */
  37. }
  38. /* :nth-child(n) n: 支持表达式 */
  39. /* 当n在表达式中的时, 从0开始 */
  40. .container > :nth-child(2n) {
  41. /* background-color: magenta; */
  42. }
  43. /* even: 代表偶数 */
  44. .container > :nth-child(even) {
  45. /* background-color: magenta; */
  46. }
  47. /* 选择奇数 */
  48. .container > :nth-child(2n-1) {
  49. /* background-color: lightsalmon; */
  50. }
  51. /* odd: 代表奇数 */
  52. .container > :nth-child(odd) {
  53. /* background-color: lightsalmon; */
  54. }
  55. /* 只选择前三个 */
  56. /* n: 0开始 */
  57. /* -0 + 3 = 3
  58. -1 +3 = 2
  59. -2 +3 = 1 */
  60. .container > :nth-child(-n + 3) {
  61. /* background-color: lightgreen; */
  62. }
  63. /* 选择倒数第2个 */
  64. .container :nth-last-child(2) {
  65. /* background-color: lime; */
  66. }
  67. /* 从第4个开始,选择剩下的所有元素 */
  68. .container > :nth-child(n + 4) {
  69. background-color: lightgrey;
  70. }
  71. </style>
  72. </head>
  73. <body>
  74. <div class="container">
  75. <div class="item">1</div>
  76. <div class="item">2</div>
  77. <div class="item">3</div>
  78. <div class="item">4</div>
  79. <div class="item">5</div>
  80. <div class="item">6</div>
  81. <div class="item">7</div>
  82. <div class="item">8</div>
  83. <div class="item">9</div>
  84. </div>
  85. </body>
  86. </html>

3.1.2 分组匹配

序号 选择器 描述 举例
1 :first-of-type 匹配按类型分组后的第一个子元素 div :first-of-type
2 :last-of-type 匹配按类型分组后的最后一个子元素 div :last-of-type
3 :only-of-type 匹配按类型分组后的唯一子元素 div :only-of-type
4 :nth-of-type() 匹配按类型分组后的任意位置的子元素 div :nth-of-type(n)
5 :nth-last-of-type() 匹配按类型分组后倒数任意位置的子元素 div :nth-last-of-type(n)
  • 允许使用表达式来匹配一组元素,表达式中的”n”是从”0”开始计数,且必须写到前面
  • “-n”表示获取前面一组元素,正数表示从指定位置获取余下元素

示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>结构伪类: 分组匹配</title>
  7. <style>
  8. .container {
  9. width: 300px;
  10. height: 300px;
  11. display: grid;
  12. grid-template-columns: repeat(3, 1fr);
  13. gap: 5px;
  14. }
  15. /* 类选择器 */
  16. .item {
  17. font-size: 2rem;
  18. background-color: lightskyblue;
  19. display: flex;
  20. justify-content: center;
  21. align-items: center;
  22. }
  23. .container span:first-of-type {
  24. background-color: violet;
  25. }
  26. .container span:last-of-type {
  27. background-color: violet;
  28. }
  29. /* span分组前三个 */
  30. .container span:nth-of-type(-n + 3) {
  31. background-color: grey;
  32. }
  33. .container span:nth-last-of-type(-n + 2) {
  34. background-color: coral;
  35. }
  36. </style>
  37. </head>
  38. <body>
  39. <div class="container">
  40. <div class="item">1</div>
  41. <div class="item">2</div>
  42. <div class="item">3</div>
  43. <div class="item">4</div>
  44. <!-- 分为二组 -->
  45. <span class="item">5</span>
  46. <span class="item">6</span>
  47. <span class="item">7</span>
  48. <span class="item">8</span>
  49. <span class="item">9</span>
  50. </div>
  51. </body>
  52. </html>

3.2 表单伪类

表单伪类:
有效的 enabled
禁用的 disabled
必选项 required

示例

  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  6. <title>表单伪类</title>
  7. <style>
  8. :root {
  9. background-color: lightgreen;
  10. }
  11. input:enabled {
  12. background-color: blanchedalmond;
  13. }
  14. input:disabled {
  15. background-color: lightgreen;
  16. }
  17. /*input:required {*/
  18. /* background-color: yellow; */
  19. /* } */
  20. </style>
  21. </head>
  22. <body>
  23. <h3>用户登录</h3>
  24. <form action="" method="post">
  25. <div>
  26. <label for="email">邮箱:</label>
  27. <input
  28. type="email"
  29. id="email"
  30. name="email"
  31. required
  32. placeholder="example@email.com"
  33. />
  34. </div>
  35. <div>
  36. <label for="password">密码:</label>
  37. <input
  38. type="password"
  39. id="password"
  40. name="password"
  41. required
  42. placeholder="不得少于6位"
  43. />
  44. </div>
  45. <div>
  46. <label for="save">保存密码:</label>
  47. <input type="checkbox" id="save" name="save" checked readonly />
  48. </div>
  49. <div>
  50. <label for="save_time">保存期限:</label>
  51. <select name="save_time" id="save_time">
  52. <option value="7" selected>7天</option>
  53. <option value="30">30天</option>
  54. </select>
  55. </div>
  56. <div>
  57. <input type="hidden" name="login_time" value="登陆时间戳" />
  58. </div>
  59. <div>
  60. <label for="warning">警告:</label>
  61. <input
  62. type="text"
  63. id="warning"
  64. value="一天内仅允许登录三次"
  65. style="border: none;"
  66. disabled
  67. />
  68. </div>
  69. <script>
  70. // js未学,暂时忽略,只须知道功能即可: 自动生成时间戳,填充到表单隐藏域中
  71. document.querySelector('[type="hidden"]').value = new Date().getTime();
  72. </script>
  73. </form>
  74. </body>
  75. </html>

3.3 其它伪类

序号 选择器 描述
1 :active 向被激活的元素添加样式
2 :focus 向拥有键盘输入焦点的元素添加样式
3 :hover 当鼠标悬浮在元素上方时,向元素添加样式
4 :link 向未被访问的链接添加样式
5 :visited 向已被访问的链接添加样式
5 :root 根元素,通常是html
5 :empty 选择没有任何子元素的元素(含文本节点)
5 :not() 排除与选择器参数匹配的元素

课程小结:

通过本次课程的学习,较为细致地了解了选择器的基本类型,以及具体的使用方式,而且老师列举了一些易懂的实例帮助我们理解,知识讲解非常详细,主要内容有:
1、简单选择器,其实主要分为两类:元素选择器和属性选择器,其它的都是这两类的特殊情况,最常用的是: 元素选择器, 类选择器, id 选择器,其优先级依次增加;
2、上下文选择器:html 文档,看上去就像一颗倒置的”树”,所以是有层级结构的,每一个元素, 在文档中, 都有自己的位置,即上下文关系,所以, 完全可以根据元素的上下文关系,来获取到它们;
3、伪类选择器:上下文选择器的局限性,例如选择同一个父级下的第二个子元素,就没那么简单,而伪类就正好弥补了上下文选择器的短板, 所以伪类,大多数是基于文档中元素结构的,其优点主要是对元素的选择更精准,还有表达式,使用方式非常灵活. : 本意是假的,不存在的意思, 这里是特指, 不需要在元素上添加额外的属性来获取元素;: 暗指伪类的级别, 仍然是属于”class”级别, 仍然属于属性选择器范畴,级别高于元素选择器; 结构伪类(不分组匹配:nth-child(n);分组匹配:nth-of-type(n)),根据子元素的位置特征进行选择。- 允许使用表达式来匹配一组元素,表达式中的”n”是从”0”开始计数,且必须写到前面,- “-n”表示获取前面一组元素,正数表示从指定位置获取余下元素;表单伪类,根据表单控件状态特征进行选择,主要包括有效的enabled、禁用的disabled、必选项required;
4、其它伪类,:active:focus:hover:link:visited:root:empty:not()
在老师的帮助下,通过梳理以上知识点的层级与关联关系,对相关内容有了在理解的基础上的记忆,便于巩固所学内容,希望能如老师所期待,我们都能做选择器的“终结者”。

Correcting teacher:天蓬老师天蓬老师

Correction status:qualified

Teacher's comments:选择器核心的就那么点知识, 其它的都是扩展, 很容易掌握
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post