3 Star 18 Fork 7

杨得朝/web-test

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
html左侧菜单.html 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
杨得朝 提交于 2020-07-08 18:22 . submit
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
<style>
.outer {
height: 1000px;
width: 100%;
}
.menu {
height: 500px;
width: 30%;
background: antiquewhite;
}
.title {
background: cornflowerblue;
line-height: 40px;
}
.hide {
display: none;
}
hr {
line-height: 10px;
}
</style>
</head>
<body>
<div class="outer">
<div class="menu">
<div class="item">
<div class="title" onclick="show(this)"> 菜单一</div>
<div class="con">
<div>111</div>
<div>222</div>
<div>333</div>
</div>
</div>
<hr>
<div class="item">
<div class="title" onclick="show(this)"> 菜单二</div>
<div class="con hide">
<div>111</div>
<div>222</div>
<div>333</div>
</div>
</div>
<hr>
<div class="item">
<div class="title" onclick="show(this)"> 菜单三</div>
<div class="con hide">
<div>111</div>
<div>222</div>
<div>333</div>
</div>
</div>
</div>
<div class="content"></div>
</div>
</body>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
function show(self) {
$(self).next().removeClass("hide");
$(self).parent().siblings().children(".con").addClass("hide")
}
</script>
</html>
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/yangdechao_admin/web-test.git
git@gitee.com:yangdechao_admin/web-test.git
yangdechao_admin
web-test
web-test
master

搜索帮助