锚点链接
1)引入jquery
2)给a标签设置class smooth
3)$(".smooth").click(function(){
var href = $(this).attr("href");
var pos = $(href).offset().top;
$("html,body").animate({scrollTop:pos}, 1000);
return false; });
1)引入jquery
2)给a标签设置class smooth
3)$(".smooth").click(function(){
var href = $(this).attr("href");
var pos = $(href).offset().top;
$("html,body").animate({scrollTop:pos}, 1000);
return false; });