JS
var t = $("#divId").offset().top;// 获取需要跳转到标签的top值
$("html,body").animate({scrollTop: t}, 300); // 动态跳转到指定位置(数值越大滚动速度越慢)
JS
var t = $("#divId").offset().top;// 获取需要跳转到标签的top值
$("html,body").animate({scrollTop: t}, 300); // 动态跳转到指定位置(数值越大滚动速度越慢)