<!DOCTYPE html PUBLIC
"-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"
>
<html xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
<title>Untitled Page</title>
<script type=
"text/javascript"
src=jquery-1.8.0.js></script>
<script>
$(document).ready(
function
() {
$(
'#top'
).click(
function
() {
$(
'html'
).animate(
{ scrollTop:
'0px'
}, 1000
);
});
$(
'#foot'
).click(
function
() {
$(
'html'
).animate(
{scrollTop:$(
'span'
).offset().top},1000
);
});
});
</script>
</head>
<body>
<br /> <br /> <br /> <br /> <br />
<a href=
"#"
id=
"foot"
>底部</a>
<br /> <br /> <br /> <br /> <br />
<br /> <br /> <br /> <br /> <br />
<a href=
"#"
id=
"top"
>顶部</a>
<br /> <br /> <br /> <br /> <br />
<span></span>
</body>
</html>