码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-10-30 14:55:15      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   ar   sp   div   on   cti   html   

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); 
}

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

标签:style   io   color   ar   sp   div   on   cti   html   

原文地址:http://www.cnblogs.com/sunjar/p/4062597.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!