打开一个新站点,底部有滚动条

Open a new site, scrollbar at the bottom

当我打开一个新站点时,我将在我的论坛系统中滚动条位于站点底部,这样我就不必向下滚动。我不知道如何为此编写代码,因为我不是 JavaScript..

中的专家

一种方法是在页面底部放置一个书签。示例:

<a id="bottom"></a>

当您打开页面时,将书签作为哈希包含在内。示例:

<a href="showitem.html#bottom">show</a>

您可以使用css来完成任务:

Use this code in css

<style type="text/css"> body{overflow-x:hidden;} *{ overflow-x:hidden;} html, div, span, p, label, textarea{ overflow-x:hidden; } </style>

You don't need to use JavaScript to hide bottom scrollbar in the html page