javascript伸縮功能表列實現代碼,javascript伸縮

來源:互聯網
上載者:User

javascript伸縮功能表列實現代碼,javascript伸縮

本文實現了點擊標題時判斷該標題下的菜單是否顯示,如果是顯示的則將其隱藏,如果是隱藏的則將其顯示出來。具體代碼如下

<!doctype html><html lang="en"><head>  <meta charset="UTF-8">  <title>Document</title>  <style type="text/css">  *{margin:0;   padding:0;   font-size:13px;   list-style:none;}.menu{width:210px;   margin:50px auto;   border:1px solid #ccc;}.menu p{height:25px;    line-height:25px;    font-weight:bold;    background:#eee;    border-bottom:1px solid #ccc;    cursor:pointer;    padding-left:5px;}.menu div ul{display:none;}.menu li{height:24px;     line-height:24px;     padding-left:5px;}</style>  <script type="text/javascript">  window.onload=function(){   // 將所有點擊的標題和要顯示隱藏的列表取出來  var ps = document.getElementsByTagName("p");  var uls = document.getElementsByTagName("ul");   // 遍曆所有要點擊的標題且給它們添加索引及綁定事件  for(var i = 0, n = ps.length; i <n; i += 1){    ps[i].id = i;    ps[i].onclick = function(){      for(var j = 0; j < n ; j += 1){        uls[j].style.display = "none";      }      uls[this.id].style.display = "block";    }   // 擷取點擊的標題上的索引屬性,根據該索引找到對應的列表  }   // 判斷該列表,如果是顯示的則將其隱藏,如果是隱藏的則將其顯示出來 }  </script></head><body>  <div class="menu" id="menu">    <div>      <p>Web前端</p>      <ul style="display:block">        <li>JavaScript</li>        <li>DIV+CSS</li>        <li>jQuery</li>      </ul>    </div>    <div>      <p>後台指令碼</p>      <ul>        <li>PHP</li>        <li>ASP.net</li>        <li>JSP</li>      </ul>    </div>    <div>      <p>前端架構</p>      <ul>        <li>Extjs</li>        <li>Esspress</li>        <li>YUI</li>      </ul>    </div>  </div></body></html>

執行個體效果:

以上就是為大家分享的javascript伸縮功能表列實現代碼,希望對大家的學習有所協助。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.