$(document).ready(function(){ // 展开 $('.nav li').hover(function(){ var index=$(this).index(); $(this).find('.yangc').stop(true,true).fadein("normal"); $(this).find('.chao a').stop(true,true).animate({"margintop":-5}); $(this).find('.chao .xias').stop(true,true).animate({"margintop":-14}); $(this).find('.sub').stop(true,true).fadein("normal"); }); //收起 $('.nav li').mouseleave(function(){ var index=$(this).index(); $(this).find('.yangc').stop(true,true).fadeout("normal"); $(this).find('.chao a').stop(true,true).animate({"margintop":0}); $(this).find('.chao .xias').stop(true,true).animate({"margintop":-0}); $(this).find('.sub').stop(true,true).fadeout("normal"); }); });