有人可以逐行解释这个吗?
$(function() {
$('.js-nav a, .js-connect').click(function(e) {
e.preventDefault();
$('body, html').animate({
scrollTop: $($.attr(this, 'href')).offset().top
}, 750);
}); });
答案 0 :(得分:0)
点击.js-nav a
链接后,该页面将滚动到$.attr(this, 'href')
的位置,这是我猜的链接目标。