链接平滑滚动至锚点

代码:

搜索框:

1
2
3
4
5
6
$('.column').click(function () {
$('html, body').animate({
scrollTop:$($(this).attr('href')).offset().top
}, 500);
return false;
});