如何创建:标签页
学习如何使用 CSS 和 JavaScript 创建选标签页。
标签页
标签页非常适合单页 Web 应用程序或能够显示不同主题的网页:
London
London is the capital city of England.
Paris
Paris is the capital of France.
Tokyo
Tokyo is the capital of Japan.
创建可切换的标签页
第一步 - 添加 HTML:
<!-- 标签页链接 --> <div class="tab"> <button class="tablinks" onclick="openCity(event, 'London')">London</button> <button class="tablinks" onclick="openCity(event, 'Paris')">Paris</button> <button class="tablinks" onclick="openCity(event, 'Tokyo')">Tokyo</button>