jQuery下拉导航

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery下拉导航相关的知识,希望对你有一定的参考价值。

Simply jQuery script for CSS drop-down menu
  1. $(document).ready(function() {
  2. //Main nav drop-downs
  3. $('#header ul li').each(function() {
  4. $(this).mouseover(function() {
  5. $(this).children('ul').css("display", "block");
  6. });
  7. $(this).mouseout(function() {
  8. $(this).children('ul').css("display", "none");
  9. });
  10. });
  11. });

以上是关于jQuery下拉导航的主要内容,如果未能解决你的问题,请参考以下文章