页面跳转到指定位置

例如:方法一:

1、点击qa.html页面的点击跳转跳转到底部的

将要跳转到这里

2、点击qa.html页面的点击跳转跳转到account.html页面的底部的

将要跳转到这里

方法二:

点击跳转

将要跳转到这里

function click_scroll() {
var scroll_offset = $("#mess").offset(); //得到pos这个div层的offset,包含两个值,top和left
$("body,html").animate({
scrollTop:scroll_offset.top //让body的scrollTop等于pos的top,就实现了滚动
},0);
}

你可能感兴趣的:(页面跳转到指定位置)