我有一个带有四个按钮菜单栏的网页。每个按钮单击都会显示一个不同的 div。所有四个 div 都包含在同一个页面中(除了 index.html 之外,我不使用任何第二页)。我希望这些 div 之间的更改以
http://livedemo00.template-help.com/wt_39361/index.html#!/page_about
的方式
完成。我的方式是:绝对位置到任何 div 并应用
$('#content1').animate({ "left": "+=1500px" }, "slow" );
但是,结果不是我想要的,因为 content1 向右走,但水平滚动条仍然可见。我怎样才能以我想要的方式消失#content1 并同时出现#content2?
谢谢