我正在尝试使用 div id="" 的平滑滚动功能,但不是滚动它,而是捕捉到元素。
$(document).ready(function() {
$('a[href*=#]').bind("click", function(e) {
var target = $(this).attr("href"); //Get the target
var scrollToPosition = $(target).offset().top;
$('html').animate({ 'scrollTop': scrollToPosition }, 500, function(target){
window.location.hash = target;
});
e.preventDefault();
});
我错过了什么吗?