jQuery 二级菜单,一次显示一个小类 鼠标点击显示小类

jQuery 二级菜单,一次显示一个小类 鼠标点击显示小类

本例有另外2个关联案例,演示地址分别为2.php,3.php

jQuery 二级菜单,一次显示一个小类 鼠标点击显示小类

XML/HTML Code
  1. <div class="arrowlistmenu">
  2. <h3 class="menuheader expandable">表单</h3>
  3. <ul class="categoryitems">
  4. <li><a href="1/">Horizontal CSS Menus</a></li>
  5. <li><a href="2/">Vertical CSS Menus</a></li>
  6. <li><a href="4/">Image CSS</a></li>
  7. <li><a href="6/">Form CSS</a></li>
  8. </ul>
  9. <h3 class="menuheader expandable">导航菜单</h3>
  10. <ul class="categoryitems">
  11. <li><a href="">CSS Gallery</a></li>
  12. <li><a href="">Menu Gallery</a></li>
  13. <li><a href="">Web Design News</a></li>
  14. <li><a href="">CSS Examples</a></li>
  15. <li><a href="">CSS Compressor</a></li>
  16. <li><a href="">CSS Forums</a></li>
  17. </ul>
  18. <h3 class="menuheader expandable">分页</h3>
  19. <ul class="categoryitems">
  20. <li><a href="#" >Free JavaScripts</a></li>
  21. </ul>
  22. </div>
JavaScript Code
  1. <script type="text/javascript">
  2. ddaccordion.init({
  3. headerclass: "expandable", //Shared CSS class name of headers group that are expandable
  4. contentclass: "categoryitems", //Shared CSS class name of contents group
  5. revealtype: "click", //Reveal content when user clicks or onmouseover the header? Valid value: "click", "clickgo", or "mouseover"
  6. mouseoverdelay: 200, //if revealtype="mouseover", set delay in milliseconds before header expands onMouseover
  7. collapseprev: true, //Collapse previous content (so only one open at any time)? true/false
  8. defaultexpanded: [0], //index of content(s) open by default [index1, index2, etc]. [] denotes no content
  9. onemustopen: false, //Specify whether at least one header should be open always (so never all headers closed)
  10. animatedefault: false, //Should contents open by default be animated into view?
  11. persiststate: true, //persist state of opened contents within browser session?
  12. toggleclass: ["", "openheader"], //Two CSS classes to be applied to the header when it's collapsed and expanded, respectively ["class1", "class2"]
  13. togglehtml: ["prefix", "", ""], //Additional HTML added to the header when it's collapsed and expanded, respectively  ["position", "html1", "html2"] (see docs)
  14. animatespeed: "fast", //speed of animation: integer in milliseconds (ie: 200), or keywords "fast", "normal", or "slow"
  15. oninit:function(headers, expandedindices){ //custom code to run when headers have initalized
  16. //do nothing
  17. },
  18. onopenclose:function(header, index, state, isuseractivated){ //custom code to run whenever a header is opened or closed
  19. //do nothing
  20. }
  21. })
  22. </script>

原文地址:http://www.freejs.net/article_daohangcaidan_146.html

上一篇:legend---七、jquery如何选中select的selected的选择上的自定义属性


下一篇:python 爬虫 伪装