-1

她在我的 XSLT 页面的头部我的简单 JS 代码:

script src="http://code.jquery.com/jquery-latest.js"></script>
<script  type="text/javascript">
    var scrollTo = $('#what').get(0);
    scrollTo.scrollIntoView();
    alert(scrollTo.innerHTML);
</script>

id = "what" 的 div 元素位于页面底部。当我打开页面时,它不会在那里滚动。为什么不?

4

1 回答 1

0

你可以简单地这样做:

$(document).ready(function () {
    // Handler for .ready() called.
    $('html, body').animate({
        scrollTop: $('#what').offset().top
    }, 'slow');
});

小提琴演示

于 2013-05-15T09:10:32.580 回答