jquery点击按钮显示全部内容,在点击隐藏

2024-11-29 21:33:16
推荐回答(2个)
回答1:

先给限定最大高度,再用jquery来写

$(".ftlt_ty_navigation>span").click(function(){
if($(this).children("i").is('.icon-arrow_top')){
$(this).children("i").removeClass("icon-arrow_top").addClass("icon-chevron-down");
$(this).parent().next().css({"height":"80px","overflow":"hidden"});
}else if($(this).children("i").is('.icon-chevron-down')){
$(this).children("i").removeClass("icon-chevron-down").addClass("icon-arrow_top");
$(this).parent().next().css({"height":"auto","min-height":"80px","overflow":"hidden"});
}
})

回答2:

这个应该是每块对应一个div,选择不同的按钮,显示对应的div,隐藏其他div