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.hide(选择器)

使用元素ID隐藏元素

要隐藏具有指定ID的元素,请在ID名称前使用井号(#)。

隐藏ID为“London”的元素

示例

<button onclick="w3.hide('#London')">隐藏</button>

亲自试一试 » 使用CSS »


使用标签名称隐藏元素

要隐藏具有指定标签名称的所有元素,请使用标签名称(不带<和>)作为选择器。

隐藏所有<h2>元素

示例

<button onclick="w3.hide('h2')">隐藏</button>

亲自试一试 » 使用CSS »


使用类名称隐藏元素

要隐藏具有指定类名称的所有元素,请在类名称前使用句点(.)。

隐藏类名为“city”的元素

示例

<button onclick="w3.hide('.city')">隐藏</button>

亲自试一试 » 使用CSS »


使用元素ID显示元素

要显示具有指定ID的元素,请在ID名称前使用井号(#)。

显示ID为“London”的元素

示例

<button onclick="w3.show('#London')">显示</button>

亲自试一试 » 使用CSS »


使用标签名称显示元素

要显示具有指定标签名称的所有元素,请使用标签名称(不带<和>)作为选择器。

显示所有<h2>元素

示例

<button onclick="w3.show('h2')">显示</button>

亲自试一试 » 使用CSS »


使用类名称显示元素

要显示具有指定类名称的所有元素,请在类名称前使用句点(.)。

显示类名为“city”的元素

示例

<button onclick="w3.show('.city')">显示</button>

亲自试一试 » 使用CSS »

切换隐藏/显示

w3.toggleShow(选择器)

使用元素ID切换隐藏和显示

在隐藏和显示ID为“London”的元素之间切换

示例

<button onclick="w3.toggleShow('#London')">切换隐藏/显示</button>

亲自试一试 » 使用CSS »


使用标签名称切换隐藏和显示

在隐藏和显示所有<h2>元素之间切换

示例

<button onclick="w3.toggleShow('h2')">切换隐藏/显示</button>

亲自试一试 » 使用CSS »


使用类名称切换隐藏和显示

在隐藏和显示类名为“city”的元素之间切换

示例

<button onclick="w3.toggleShow('.city')">切换隐藏/显示</button>

亲自试一试 » 使用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.