我需要在同一页面点击div后隐藏网址中的片段标识符。
这是我的js代码:
$(document).ready(function(){
$('a[href^="#"]').on('click',function (e) {
e.preventDefault();
var target = this.hash,
$target = $(target);
alert(target);
$('html, body').stop().animate({
'scrollTop': $target.offset().top
}, 900, 'swing', function () {
window.location.hash = target;
});
});
});
网址就像这样http://www.example.com#about
,但我希望像这样http://www.example.com
我尝试在点击功能结束时更改$target.offset
和return false;
,但它们无效。
答案 0 :(得分:0)
尝试删除动画完成回调。
由于你做preventDefault()
我很确定如果删除它就不会再使用哈希值了。
如果这不起作用,请将其替换为window.location.hash = ''
。