实现点击向下打开,再次点击向上关闭

$("nav dt").click(function(){
$(this).nextAll("dd").slideToggle("slow");
})

原文地址:https://www.cnblogs.com/zqr99/p/7476238.html