// 左侧分类树动态 $(document).ready(function(){ // 左侧导航点击切换 $(".category-tree .parent-li-title").each(function(){ var el = $(this); var oleftchildul = el.parent().find('ul'); el.click(function(){ if(oleftchildul.css('display')=='none'){ //oleftchildul.css('display') = 'block'; oleftchildul.slidedown('slow'); }else{ //oleftchildul.css('display') = 'none'; oleftchildul.slideup('slow'); } }); }); });