1 $("ul#navbar li").hover(function(){ 2 $(this).find('ul').hide(); 3 $(this).find('ul:first').css({visibility: "visible",display: "none"}).fadeIn(50); 4 5 },function(){ 6 $(this).find('ul').hide(); 7 $(this).find('ul:first').css({visibility: "hidden", display: "none"}); 8 });
相当于:
1 $(".thumbs li").mouseover( function (){ 2 3 4 }); 5 $(".thumbs li").mouseout( function (){ 6 7 });