首页 > 代码库 > 收缩展开菜单
收缩展开菜单
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>收缩展开菜单</title> <style type="text/css"> p,ul,li{padding:0;margin:0;list-style: none;} #box{font-size: 12px;color:#00c;width:58px;margin: 0 auto;} p{width: 58px;height: 24px;line-height: 24px;padding-left: 3px;background: #C5CCC9;} ul{width:56px;border:1px solid #9a99ff;display: none;margin-top:3px;} a{text-decoration: none;display:block;height:24px;line-height: 24px;text-align: center;color:#00c;} a:hover{background: #d9e1f6;} </style> <script type="text/javascript"> window.onload=function(){ var oBtn=document.getElementById(‘btn‘); var oUl=document.getElementById(‘ul1‘); oBtn.onclick=function(){ if (oUl.style.display==‘block‘) { oUl.style.display=‘none‘; }else{//none oUl.style.display=‘block‘; }; } } </script> </head> <body> <!-- 如果菜单显示就把他隐藏,如果菜单隐藏就显示出来 --> <div id="box"> <p id="btn">输入法</p> <ul id="ul1" style="display:block;"> <li><a href="http://www.mamicode.com/#">手写</a></li> <li><a href="http://www.mamicode.com/#">拼音</a></li> <li><a href="http://www.mamicode.com/#">关闭</a></li> </ul> </div> </body> </html>
查看范例
收缩展开菜单
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。