html如何实现左侧隐藏菜单,HTML 之 左侧菜单
代码Title.item .header{height: 35px;background-color: #2459a2;color: white;line-height: 35px;}.hide{display: none;}菜单一内容一内容一内容一菜单二内容二内容二内容二菜单三内容三内容三内容三function ChangeMenu(nid) {var current_header= docum
·
代码
Title.item .header{
height: 35px;
background-color: #2459a2;
color: white;
line-height: 35px;
}
.hide{
display: none;
}
菜单一
菜单二
菜单三
function ChangeMenu(nid) {
var current_header= document.getElementById(nid)
var item_list = current_header.parentElement.parentElement.children;
for(var i=0;i
var current_itme = item_list[i];
current_itme.children[1].classList.add('hide');
}
current_header.nextElementSibling.classList.remove('hide')
}
展示
标签:菜单,parentElement,current,header,HTML,内容,左侧,var
来源: https://blog.51cto.com/12965094/2371375
更多推荐
已为社区贡献1条内容
所有评论(0)