如何平滑滚动到页面的特定部分?
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<a href="#" class="scrollToBottom"><img src="images/godown.png" alt="Down Arrow" width="116" /></a>
<script type="text/javascript">
$(document).ready(function(){
// Scroll page to the bottom
$('a.scrollToBottom').click(function(){
$('html, body, .content').animate({scrollTop: $(document).height()}, 1500);
return false;
});
})
</script>
现在该代码的作用是,当我单击“godown.png”图像时,它会起作用,但会转到页面底部的末尾。无论如何让它去中间?我将如何用#middle 或其他东西定义中间?