1 Star 1 Fork 0

柠檬/studentSystem

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tabbar.html 2.33 KB
一键复制 编辑 原始数据 按行查看 历史
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.title {
float: left;
cursor: pointer;
padding: 5px 20px;
border: 1px solid #ccc;
border-top-left-radius: 6px;
border-top-right-radius: 6px;
background-color: orange;
color: honeydew;
}
.active {
background-color: #abd;
border-bottom: 1px solid transparent;
}
.clear {
clear: both;
}
#content {
width: 500px;
height: 500px;
padding: 10px;
position: relative;
top: -1px;
z-index: -1;
border: 1px solid #ccc;
background: linear-gradient(to bottom, #abd, #ffffff);
}
.input {
display: block;
width: 400px;
height: 40px;
line-height: 40px;
margin: 0 auto;
border-radius: 6px;
border: 2px solid #56a5f1;
padding-left: 20px;
font-size: 18px;
color: #666;
outline: none;
}
</style>
</head>
<body>
<input type="text" class="input" placeholder="请输入音乐ID" autofocus>
<div class="title song active">单曲</div>
<div class="title lyric">歌词</div>
<div class="title playlist">其他</div>
<div class="clear"></div>
<div id="content"></div>
<script>
let contentList = [];
let indexPage = `这是首页的内容`;
let newsPage = `这是新闻的内容`;
let musicPage = `这是音乐的内容`;
contentList.push(indexPage, newsPage, musicPage);
// 默认显示首页内容
content.innerHTML = contentList[0]
// 选中按钮
let btns = document.querySelectorAll('.title');
// 获取当前选中的元素
let currentBtns = btns[0]
for(let i=0;i < btns.length; i ++) {
// 通过for循环给每一个按钮增加属性并绑定事件
let obj = btns[i];
// 新增btnIndex属性,作为编号
obj.btnIndex = i;
// 绑定单击事件
obj.onclick = function(e) {
// 替换对应的内容
content.innerHTML = contentList[e.target.btnIndex];
// 移除class
currentBtns.classList.remove('active');
// e.target.classList.add('active');
// 给当前元素增加class
this.classList.add('active');
// 更新当前元素
currentBtns = e.target
}
}
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/yan_jun_feng/studentSystem.git
git@gitee.com:yan_jun_feng/studentSystem.git
yan_jun_feng
studentSystem
studentSystem
master

搜索帮助