tab栏切换js代码
时间: 2023-07-28 22:06:34 浏览: 145
以下是一个简单的 tab 栏切换的示例代码:
HTML 代码:
```html
<div class="tab">
<button class="tablinks" onclick="openTab(event, 'tab1')">Tab 1</button>
<button class="tablinks" onclick="openTab(event, 'tab2')">Tab 2</button>
<button class="tablinks" onclick="openTab(event, 'tab3')">Tab 3</button>
</div>
<div id="tab1" class="tabcontent">
<h3>Tab 1</h3>
<p>This is the content of Tab 1.</p>
</div>
<div id="tab2" class="tabcontent">
<h3>Tab 2</h3>
<p>This is the content of Tab 2.</p>
</div>
<div id="tab3" class="tabcontent">
<h3>Tab 3</h3>
<p>This is the content of Tab 3.</p>
</div>
```
CSS 代码:
```css
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
}
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}
.tab button:hover {
background-color: #ddd;
}
.tab button.active {
background-color: #ccc;
}
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}
```
JavaScript 代码:
```javascript
function openTab(evt, tabName) {
var i, tabcontent, tablinks;
tabcontent = document.getElementsByClassName("tabcontent");
for (i = 0; i < tabcontent.length; i++) {
tabcontent[i].style.display = "none";
}
tablinks = document.getElementsByClassName("tablinks");
for (i = 0; i < tablinks.length; i++) {
tablinks[i].className = tablinks[i].className.replace(" active", "");
}
document.getElementById(tabName).style.display = "block";
evt.currentTarget.className += " active";
}
```
可以看到,以上代码首先定义了一个 `.tab` 的容器和多个 `.tablinks` 按钮,以及多个 `.tabcontent` 的内容区域。当点击某个按钮时,会触发 `openTab()` 函数,该函数会根据传入的 `tabName` 参数显示对应的内容区域,并将该按钮设置为 `active`,同时隐藏其他内容区域和按钮的 `active` 状态。具体实现方法是通过调整元素的 `display` 和 `className` 属性来实现。
阅读全文