jQuery下拉导航
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jQuery下拉导航相关的知识,希望对你有一定的参考价值。
Simply jQuery script for CSS drop-down menu
$(document).ready(function() { //Main nav drop-downs $('#header ul li').each(function() { $(this).mouseover(function() { $(this).children('ul').css("display", "block"); }); $(this).mouseout(function() { $(this).children('ul').css("display", "none"); }); }); });
以上是关于jQuery下拉导航的主要内容,如果未能解决你的问题,请参考以下文章