$(this).closest(".list_head").next(".list_con").toggle();
toggle():切换元素可见状态
if($(this).closest(".list_head").next(".list_con").is(':visible')){
$(this).closest(".list").addClass("list_now");
} else {
$(this).closest(".list").removeClass("list_now")
}
.is(':visible'):检测元素是否可见
转载于:https://my.oschina.net/dreamnight/blog/695073