var turn = function(target,time,opts){
target.find('a').hover(function(){
$(this).find('.class_01').stop().animate(opts[0],time,function(){
$(this).hide().next().show();
$(this).next().animate(opts[1],time);
});
},function(){
$(this).find('.info').animate(opts[0],time,function(){
$(this).hide().prev().show();
$(this).prev().animate(opts[1],time);
});
});
}
想让鼠标悬停改成鼠标点击,target.find('a').hover改成target.find('a').click没用
达令说