0

我有一个网站,我希望用户可以上下滚动多少。这意味着无论页面的内容是什么,滚动能力都不应低于这个给定的数量。

如何在 Javascript 中设置它?

4

1 回答 1

1

你可以这样做:

CSS:

HTML {
    height: 100%;
    padding-bottom: 200px;
    padding-top: 200px;
}

JS:

window.onload = function () {
    document.body.scrollIntoView(true);
    return;
}
于 2012-12-29T10:47:21.417 回答