我编写了一个html网页,但是显示的时候总是从网页底部先显示,我想让他正常显示,怎么办。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了我编写了一个html网页,但是显示的时候总是从网页底部先显示,我想让他正常显示,怎么办。相关的知识,希望对你有一定的参考价值。
用DW编的
没实际情况 没直观参考 谁也不好说
这个实现方式很多
先说一种 你参考
你可以排除相关代码 就可以去掉效果
实现网页一打开就直接显示最底部的代码方法
<!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 border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td align="center" bgcolor="#999999"><strong>TOP</strong></td>
</tr>
<tr>
<td align="center" bgcolor="#CCCCCC">CONTENT</td>
</tr>
<tr>
<td align="center" valign="middle" bgcolor="#666666">
<a name="bottom"></a><!--锚点处-->
<strong>BOTTOM</strong></td>
</tr>
</table>
</body>
</html> 参考技术A 贴代码~~~~~
以上是关于我编写了一个html网页,但是显示的时候总是从网页底部先显示,我想让他正常显示,怎么办。的主要内容,如果未能解决你的问题,请参考以下文章