我正在使用jQuery在用户点击帖子标题时在特定的主题标签上加载页面(通过body类中的onload函数).标签显然显示在网址中.我想知道是否有办法隐藏主题标签使URL混乱.有些搜索并没有提出太多.
function goToAnchor() { location.href = "#post"; }
解决方法
如下所示:
http://djpate.com/2009/10/07/animated-scroll-to-anchorid-function-with-jquery/
function goToByScroll(id){ $('html,body').animate({scrollTop: $("#"+id).offset().top},'slow'); }
只需传递要滚动的元素的id即可.