Jq写个联级菜单

这个效果很好看,Jq很容易实现:

复制代码
    $(document).ready(function(){
        
        $('.menu li').hover(function(){
            
              $(this).children('ul').show();
              
              $(this).focus().addClass('focusa')    
          
          },function(){
          
              $(this).children('ul').hide();

              $(this).focus().removeClass('focusa')    
    
        });
        
    });
复制代码

当   hover ,执行 函数 来show , 当移出 ,执行函数 来hide。 同时这里用到了链式操作          

 $('').hover(function(){},function(){});


 


 

难的是样式

 

posted @   PLLL  阅读(223)  评论(0编辑  收藏  举报
努力加载评论中...
Flag Counter
点击右上角即可分享
微信分享提示