首页 > 编程语言 > 详细

巨丑巨简陋的一个Javascript显示隐藏菜单

时间:2015-08-15 23:12:37      阅读:308      评论:0      收藏:0      [点我收藏+]
<!DOCTYPE html>
<html>
<head>
<title></title>
<style type="text/css">
      #div1{width:100px;
            height:500px;
            background: aqua;}
    li{list-style-type: none;
       margin-left: 0px;
       text-align: left;
       text-indent: -20px;}
    li:hover{
    background:red;
    }
</style>
<script type="text/javascript">
       function show(){
       var node=document.getElementById(‘div1‘);
       if(node.style.display=="block"){
       node.style.display="none";
       }else{
       node.style.display="block";
       }
       }
</script>
</head>
<body>
   <input type="button" value="显示/隐藏" onclick="show()">
   <div id="div1">
   <ul>
   <li>php</li>
   <li>python</li>
   <li>javascript</li>
   <li>ruby</li>
   <li>php</li>
   </ul>
   </div>
</body>
</html>

巨丑巨简陋的一个Javascript显示隐藏菜单

原文:http://my.oschina.net/dongdong11019/blog/493021

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!