- 當(dāng)前位置:
- 首頁(yè) >
- 在JavaScript中實(shí)現(xiàn)Tab效果
在JavaScript中實(shí)現(xiàn)Tab效果
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Tab效果</title>
<style>
.tab-content {
display: none;
}
.active-tab {
display: block;
}
.tab-button {
cursor: pointer;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
margin: 5px;
}
</style>
</head>
<body>
<div>
<div onclick="showTab('tab1')">Tab 1</div>
<div onclick="showTab('tab2')">Tab 2</div>
<div onclick="showTab('tab3')">Tab 3</div>
<div id="tab1" class="tab-content active-tab">
<h2>內(nèi)容1</h2>
<p>這是Tab 1的內(nèi)容。</p>
</div>
<div id="tab2">
<h2>內(nèi)容2</h2>
<p>這是Tab 2的內(nèi)容。</p>
</div>
<div id="tab3">
<h2>內(nèi)容3</h2>
<p>這是Tab 3的內(nèi)容。</p>
</div>
</div>
<script>
function showTab(tabId) {
// 隱藏所有tab內(nèi)容
var tabs = document.getElementsByClassName('tab-content');
for (var i = 0; i < tabs.length; i++) {
tabs[i].classList.remove('active-tab');
}
// 顯示當(dāng)前點(diǎn)擊的tab內(nèi)容
var selectedTab = document.getElementById(tabId);
if (selectedTab) {
selectedTab.classList.add('active-tab');
}
}
</script>
</body>
</html>