码迷,mamicode.com
首页 > Web开发 > 详细

html导航隐藏显示

时间:2018-03-19 11:43:38      阅读:385      评论:0      收藏:0      [点我收藏+]

标签:meta   class   charset   金钱   char   post   utf-8   gpo   nbsp   

<!DOCTYPE html>
<html>
 <head>
  <meta charset="UTF-8">
  <title></title>
  <script src="js/jquery-1.11.3.min.js" ></script>
 </head>
  <script>
   $(function(){
    $("dd").hide();
    $("dt").click(function(){
     if($(this).next().is(":hidden"))
     {
      $(this).next().slideDown(1000);
     }else
     {
      $(this).next().slideUp(1000);
     }
    });
   });
  </script>
 <body>
  <dl>
   <dt>产品中心</dt>
    <dd>
     <div>产品</div>
     <div>产品</div>
     <div>产品</div>
    </dd>
   <dt>新闻中心</dt>
    <dd>
     <div>新闻</div>
     <div>新闻</div>
     <div>新闻</div>
    </dd>
   <dt>金钱中心</dt>
    <dd>
     <div>金钱</div>
     <div>金钱</div>
     <div>金钱</div>
    </dd>
   
  </dl>
 </body>
</html>

html导航隐藏显示

标签:meta   class   charset   金钱   char   post   utf-8   gpo   nbsp   

原文地址:https://www.cnblogs.com/index0629/p/8600664.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!