例如:方法一:
1、点击qa.html页面的<a href="qa.html#abc" >点击跳转</a>跳转到底部的<div id="abc">将要跳转到这里</div>
2、点击qa.html页面的<a href="account.html#abc" >点击跳转</a>跳转到account.html页面的底部的<div id="abc">将要跳转到这里</div>
方法二:
<a class="begin">点击跳转</a>
<div id="abc">将要跳转到这里</div>
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);
}