如何让两个form表单行距之间不出现空格?
这样写
<TABLE><form><TR>.......</TR></form></TABLE>
HTML 代码片段如下:
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
</head>
<body bgcolor="#FFFFFF" text="#000000">
<table width="550" border="0" cellspacing="1" cellpadding="0" bgcolor="#000000">
<form name="form1">
<tr bgcolor="#FFFFFF">
<td>aaaaaaaaaaaaa</td>
<td>bbbbbbbbbbbbbb</td>
<td>ccccccccccccccc</td>
</tr>
</form>
<form name="form1">
<tr bgcolor="#FFFFFF">
<td>dddddddddddddd</td>
<td>eeeeeeeeeeeeee</td>
<td>fffffffffffffffff</td>
</tr>
</form>
</table>
</body>
</html>
如何让页面自动刷新?
方法一,用refresh
HTML 代码片段如下:
<head>
<meta http-equiv="refresh" content="5">
</head>
5表示刷新时间
[Ctrl+A 全部选择 提示:你可先修改部分代码,再按运行]
方法二,使用setTimeout控制
<img src=/logo.gif>
<script>
function rl(){
document.location.reload()
}
setTimeout(rl,2000)
</script>