📅  最后修改于: 2022-03-11 14:59:07.280000             🧑  作者: Mango
$("nav").find("a").click(function(e) {
e.preventDefault();
var section = $(this).attr("href");
$("html, body").animate({
scrollTop: $(section).offset().top
});
});