大家好,我一直在學習並嘗試使用JavaScript和CSS製作可摺疊的垂直菜單。JavaScript + CSS單個可摺疊垂直菜單
我應該怎麼做,以便當我展開這兩個菜單,然後再次點擊用戶1時,用戶2將被隱藏?
這裏的編碼:
body {
background:#ffffff;
margin: 0 auto;
}
#nav{
width: 200px;
padding: 0;
margin-bottom: 0px;
font-size: 10px;
font-family: Verdana;
color: #999999;
}
#nav ul {
list-style: none;
margin: 0;
padding: 0;
border: none;
}
#nav li {
border-bottom: 1px solid #fff;
margin: 0;
width: auto;
}
li ul {
\t border-bottom: 1px solid #000000;
\t border-top: 1px solid #000000;
\t position: relative;
\t display:none;
}
ul li a {
\t display:block;
\t text-decoration: none;
\t color: #000000;
\t background: #8CDD81;
\t line-height:2em;
\t height:2em; \t
\t padding:2px 2px
\t }
\t
li li a {
\t background:#D7DBDD
\t }
li:hover li a, li.over li a {
background-color: #D7DBDD;
}
li a:hover,
li:hover a, li.over a,
li:hover li a:hover, li.over li a:hover {
color: #000000;
background-color: #F4D03F ;
}
header {
\t font-family: 'Lobster', cursive;
\t text-align: center;
\t font-size: 25px; \t
\t }
#info {
\t font-size: 18px;
\t color: #555;
\t text-align: center;
\t margin-bottom: 25px;
}
a{
\t color: #074E8C;
\t }
.scrollbar {
\t margin-left: 30px;
\t float: left;
\t height: 200px;
\t width: 210px;
\t background: #F5F5F5;
\t overflow-y: scroll;
\t margin-bottom: 25px;
\t }
.force-overflow {
\t min-height: 450px;
\t }
#wrapper {
\t text-align: center;
\t width: 500px;
\t margin: auto;
\t }
/*
* STYLE 4
*/
#style-4::-webkit-scrollbar-track
{
\t -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
\t background-color: #F5F5F5;
}
#style-4::-webkit-scrollbar
{
\t width: 10px;
\t background-color: #cccccc;
}
#style-4::-webkit-scrollbar-thumb
{
\t background-color: #9fa6ad;
\t border: 2px solid #9fa6ad;
}
li ul li {}
li.on ul {
\t display:block
\t }
\t
li.off ul {
\t display:none
\t }
<script type="text/javascript">
<!--//--><![CDATA[//><!--
startList = function() {
if (document.getElementById) {
\t navRoot = document.getElementById("nav");
\t for (i=0; i<navRoot.childNodes.length; i++) {
\t \t node = navRoot.childNodes[i];
\t \t if (node.nodeName=="LI") {
\t \t node.onclick=function() {
this.className = (this.className == "on") ? "off" : "on";
\t \t }
\t \t }
\t }
}
}
window.onload=startList;
//--><!]]>
</script>
<body>
<id="wrapper">
<div class="scrollbar" id="style-4" class="force-overflow">
<ul id="nav">
<li><a href="#"><strong>MENU</strong></a></li>
<li><a href="#"><strong>User 1 ></strong></a>
<ul>
<li><a href="#">Name </a></li>
<li><a href="#">Age</a></li>
</ul>
</li>
<li><a href="#"><strong>User 2 ></strong></a>
<ul>
<li><a href="#">Name</a></li>
<li><a href="#">Age</a></li>
</ul>
</li>
</div>
</div>
</ul>
</body>
謝謝@jafarbtech。 –