jquery收起展开效果

$("h3 i").click(function(){
$(this).parent().parent().find("ul").toggle();//无动画显示隐藏
$(this).parent().parent().find("ul").fadeToggle();// 透明度变化 淡入淡出
$(this).parent().parent().find("ul").slideToggle(); //有个上下滑动动画的展开收起效果 推荐
});

猜你喜欢

转载自blog.csdn.net/qmdweb/article/details/80712370