;(function(window){
    $('.menuitem').hover(function(){
        $('>a',this).css('background-color','#60aeeb');
        $('.subnav',this).show();
    },function(){
        if( !$(this).hasClass('selected') )
            $('>a',this).css('background-color','transparent');
        $('.subnav',this).hide();
    });
     /*$('.subnav').hover(function(){},function(){
        $('>a',this).css('background-color','transparent');
        $(this).hide();
    });*/
})(window);

posted on 2016-03-16 13:44  杨杨0708  阅读(181)  评论(0编辑  收藏  举报