晨风

-------------------- 业精于勤,荒于嬉;行成于思,毁于随

导航

点击按钮跳到当前页面指定的div和跳到顶部或底部

Posted on 2013-01-10 15:21  shenyixin  阅读(7718)  评论(0编辑  收藏  举报
function goTop() {
$('html, body').animate({scrollTop:0}, 'slow'); 
}
function goDiv(div) {
var a = $("#"+div).offset().top;
$("html,body").animate({scrollTop:a}, 'slow'); 
}
function goBottom() {
window.scrollTo(0, document.documentElement.scrollHeight-document.documentElement.clientHeight); 
}