股墓山庄

专注于AS3,JavaScript 每天一点进步,坚持...
  博客园  :: 首页  :: 新随笔  :: 联系 :: 管理

鼠标移上,移开的另一种写法

Posted on 2013-12-30 14:51  股墓山庄庄主  阅读(173)  评论(0编辑  收藏  举报
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 });