html 如何让网页一打开就直接显示最底部的部分

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了html 如何让网页一打开就直接显示最底部的部分相关的知识,希望对你有一定的参考价值。

可以在head中加入个锚点,然后锚点定位在最底部就可以了
<script>
window.location ="#zhidao";//自动跳转到锚点处
</script>
底部锚点:
<a name="zhidao"></a><!--锚点处-->
参考技术A <!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>锚点</title>
</head>
<script language="javascript">
window.location ="#bottom";//自动跳转到锚点处
</script>

<body>
<table width="300" height="1500" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td height="60" align="center" bgcolor="#999999"><strong>TOP</strong></td>
</tr>
<tr>
<td height="1390" align="center" bgcolor="#CCCCCC">CONTENT</td>
</tr>
<tr>
<td height="50" align="center" valign="middle" bgcolor="#666666">
<a name="bottom"></a><!--锚点处-->
<strong>BOTTOM</strong></td>
</tr>
</table>
</body>
</html>本回答被提问者和网友采纳
参考技术B <body onLoad="window.document.body.scrollTop = document.body.scrollHeight; ">

以上是关于html 如何让网页一打开就直接显示最底部的部分的主要内容,如果未能解决你的问题,请参考以下文章

怎样才能让手机浏览器总是使用自己选择的浏览器打开网页?

如何让iframe只显示网页的一部分?

如何让IE网页居中显示

点击网页底部的top按钮直接回到网页顶部,怎么做?用js怎么表达

js-让页面滚动最底部,显示到最底部

在html代码中“....”是起啥作用的?