$("#index a").click(function (e) {
$('html,body').scrollTo(this.hash, {duration: 2000});
});
该功能正常工作,只是在滑动后它会阻止页面一会儿(1-2秒)之后它恢复正常。
如何删除此UI块?
答案 0 :(得分:-1)
$("#index a").click(function (e) {
$("html, body").animate({ scrollTop: $(this.hash).offset().top }, 2000);
});
解决问题