示例代码:
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function(){
$('#returnTop').click(function () {
$('html,body').animate({ scrollTop: '0px' }, 800);
returnfalse;
});
});
</script>
</head>
<body>
<div style="height:2000px">
abc
</div>
<a href="###" id="returnTop" style="bottom: 10px;position: fixed;right: 10px;font-size: 16px;">returnTop</a>
</body>
</html>
你只要在 博客的"管理"->"设置"->"页脚Html代码"中加上
<a href="###" id="returnTop" style="bottom: 10px;position: fixed;right: 10px;font-size: 16px;">returnTop</a>$(function(){
$('#returnTop').click(function () {
$('html,body').animate({ scrollTop: '0px' }, 800);
returnfalse;
});
});
就可以了,博客中已经加了jquery。
在顶部添加一个锚,在按钮事件里面定位到锚就可以了