首页 > 代码库 > JQUERY点击滚动到锚点

JQUERY点击滚动到锚点

$(document).ready(function() {    $("a.topLink").click(function() {        $("html, body").animate({            scrollTop: $($(this).attr("href")).offset().top + "px"        }, {            duration: 500,            easing: "swing"        });        return false;    });});

 

JQUERY点击滚动到锚点