Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

W3.JS 选择器


W3.JS 选择器

W3.JS 选择 HTML 元素并在选定的元素上执行操作

w3.action(selector)
  • action() 在选定的元素上执行。
  • (selector) 选择 HTML 元素。

示例

w3.hide('p')  // 隐藏所有 <p> 元素

亲自试一试 » 使用 CSS »

你熟悉 CSS 选择器吗?

W3.JS 使用 CSS 语法来选择和操作 HTML 元素。

选择器用于根据 HTML 元素的标签名、id、类、类型、属性、属性值等“查找”(选择)HTML 元素。所有选择器的列表可以在我们的 CSS 选择器参考 中找到。


选择器示例

要选择 HTML 元素,请使用标签名

隐藏所有 <h2> 元素

w3.hide('h2')

亲自试一试 »

要选择具有特定 id 的元素,请编写一个哈希字符,后跟 HTML 元素的 id

隐藏 id 为“London”的元素

w3.hide('#London')

亲自试一试 »

要选择具有特定类的元素,请编写一个句点字符,后跟类的名称

隐藏所有具有类“city”的元素

w3.hide('.city')

亲自试一试 »


更多选择器示例

选择器 描述 示例
("*") 选择文档中的所有元素 试一试
(this) 选择当前 HTML 元素 试一试
("p.intro") 选择所有具有类“intro”的 <p> 元素 试一试
("div p") 选择所有 <div> 元素内部的所有 <p> 元素 试一试
("div p:first-child") 选择所有 <div> 元素内部的第一个 <p> 元素 试一试
("[href]") 选择所有具有 href 属性的元素 试一试
("a[target=_blank]") 选择所有 <a> 元素,其 target 属性值等于“_blank” 试一试
("p:nth-child(even)") 选择所有偶数 <p> 元素 试一试

有关所有 CSS 选择器的完整参考,请访问我们的 CSS 选择器参考


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.