如何 - 标签页标题
了解如何使用 CSS 和 JavaScript 创建标签页标题。
标签页标题
单击“城市”按钮以显示相应的标题
伦敦
伦敦是英国的首都。
巴黎
巴黎是法国的首都。
东京
东京是日本的首都。
奥斯陆
奥斯陆是挪威的首都。
创建可切换的标签页标题
步骤 1) 添加 HTML
示例
<div id="London" class="tabcontent">
<h1>伦敦</h1>
<p>伦敦是英国的首都。</p>
</div>
<div id="Paris" class="tabcontent">
<h1>巴黎</h1>
<p>巴黎是法国的首都。</p>
</div>
<div id="Tokyo" class="tabcontent">
<h1>东京</h1>
<p>东京是日本的首都。</p>
</div>
<div id="Oslo" class="tabcontent">
<h1>奥斯陆</h1>
<p>奥斯陆是挪威的首都。</p>
</div>
<button class="tablink" onclick="openCity('London', this, 'red')" id="defaultOpen">伦敦</button>
<button class="tablink" onclick="openCity('Paris', this, 'green')">巴黎</button>
<button class="tablink" onclick="openCity('Tokyo', this, 'blue')">东京</button>
<button class="tablink" onclick="openCity('Oslo', this, 'orange')">奥斯陆</button>
创建按钮以打开特定的标签页内容。所有具有 class="tabcontent"
的 <div> 元素默认情况下是隐藏的(使用 CSS 和 JS)。当用户单击按钮时 - 它将打开与该按钮“匹配”的标签页内容。
步骤 2) 添加 CSS
设置按钮和标签页内容的样式
示例
/* 设置标签页按钮的样式 */
.tablink {
background-color: #555;
color: white;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
font-size: 17px;
width: 25%;
}
/* 更改按钮悬停时的背景颜色 */
.tablink:hover {
background-color: #777;
}
/* 设置标签内容的默认样式 */
.tabcontent {
color: white;
display: none;
padding: 50px;
text-align: center;
}
/* 为每个标签内容单独设置样式 */
#London {background-color:red;}
#Paris {background-color:green;}
#Tokyo {background-color:blue;}
#Oslo {background-color:orange;}
步骤 3) 添加 JavaScript
示例
function openCity(cityName, elmnt, color) {
// 默认情况下隐藏所有类名为 "tabcontent" 的元素 */
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
// 移除所有标签链接/按钮的背景色
tablinks = document.getElementsByClassName("tablink");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].style.backgroundColor = "";
}
// 显示特定标签内容
document.getElementById(cityName).style.display = "block";
// 将特定颜色添加到用于打开标签内容的按钮
elmnt.style.backgroundColor = color;
}
// 获取 id 为 "defaultOpen" 的元素并点击它
document.getElementById("defaultOpen").click();
尝试一下 »
提示: 也请查看 如何操作 - 标签.