“关闭/显示侧边栏”完美终结版
之前文章《”关闭/显示侧边栏”最简代码版》,先来看看其中的jQuery代码: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 $(’#close-sidebar a’).toggle(function(){ $(this).text("显示侧边栏"); $(’#sidebar’).hide(); $(’#content’).animate({width: "960px"}, 1000); },function(){ $(this).text("关闭侧边栏"); $(’#sidebar’).show(); $(’#content’).animate({width: "705px"}, 800); }); 这段代码有个小小不完美的地方的,其实也有多个留心的童鞋发现并向我反馈过: 当点击“显示侧边栏”时,浏览器右侧的滚动条“急剧变化”,若侧边栏比较长更是明显……