jquery 缓慢伸缩效果,我想再点击的时候更换菜单样式,并实现缓慢伸缩效果

$(".father").live('click',function(){$(this).removeClass("father");$(this).addClass("... $(".father").live('click', function () {
$(this).removeClass("father");
$(this).addClass("father_sel2");
// $(".father_sel2").show('1000');
$(this).children('ul').slideDown('1000');
});
$(".father_sel2").live('click', function () {
$(this).children('ul').slideUp('1000');
$(this).removeClass("father_sel2");
$(this).addClass("father");
});

我代码是这样写的,现在只有点击打开的时候是缓慢展开的,收缩的时候还是没有效果,哪位高手教教我怎么让它缓慢收缩啊
展开
 我来答
帐号已注销
2012-08-27 · TA获得超过1232个赞
知道大有可为答主
回答量:1245
采纳率:0%
帮助的人:1419万
展开全部
这样试试

$(".father").toggle(function () {
$(this).removeClass("father");
$(this).addClass("father_sel2");
// $(".father_sel2").show('1000');
$(this).children('ul').slideDown('1000');
}, function () {
$(this).children('ul').slideUp('1000');
$(this).removeClass("father_sel2");
$(this).addClass("father");
});
追问
找到原因了 是我的addClass执行太快 效果还没出来就过去了  只是现在这样点击子菜单的时候也会收缩 能去掉子菜单的收缩效果吗?
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式