jQuery 下拉菜单

代码非常简单。

$(function() {
    $("#nav ul li:has(ul)").hover(
        function(){
            $(this).children("ul").stop(true,true).slideDown(300);
            //$(this).addClass("off");
        },
        function(){
            $(this).children("ul").stop(true,true).slideUp("fast");
            //$(this).removeClass("off");
        }
    );
})
    原文作者:GongChao
    原文地址: https://segmentfault.com/a/1190000000437328
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞