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 如何让网页一打开就直接显示最底部的部分的主要内容,如果未能解决你的问题,请参考以下文章