var t = $("#id").offset().top;// 获取需要跳转到标签的top值
//$(window).scrollTop(t);// 跳转到指定位置
$("html,body").animate({ scrollTop: t}, 1000);//与上同效
var t = $("#id").offset().top;// 获取需要跳转到标签的top值
//$(window).scrollTop(t);// 跳转到指定位置
$("html,body").animate({ scrollTop: t}, 1000);//与上同效