点击菜单滑动下拉,焦点不在下滑界面自动回 slideDown slideUp

// 点击菜单滑动下拉,焦点不在下滑界面自动回收
        $(document).ready(function () {
            var delayTime = "" ;
            $("#AOPTopMenu>ul>li").hover(function () {
                var _self = $(this).children(".SecondMenuBar");
               delayTime= setTimeout(function () {
                   $(_self).slideDown(200)
                   $(this).removeClass("bgColor");
                   $(this).addClass("SelectbgColor");
                   $("#zg_Iframe").css('display', 'block');
                }, 600);
             }, function () {
                clearTimeout(delayTime);
                $(this).children(".SecondMenuBar").slideUp();
                $("#zg_Iframe").css('display', 'none');
                $(this).removeClass("SelectbgColor");
                $(this).addClass("bgColor");
            })
        })

posted @ 2016-08-21 22:58  永醉雨辰  阅读(253)  评论(0编辑  收藏  举报