// 左导航栏点击事件 $(function(){ var count = 0; $("#icon").click(function() { if(count == 0){ count++; // count=1; $('#sidebar').animate({ left : 0, },800) }else if (count == 1) { count = 0; $('#sidebar').animate({ left : '-225px', },800) } }); })