1 js:
<script>
setTimeOut("fnSubmit()","10000");
function fnSubmit()
{
frm.submit();
}
</script>
<form name="frm">
</form>
2
<meta http-equiv="refresh" content="5;URL=index.htm">
5的单位是秒,而不是毫秒(这要注意一下,否则你会填上5000)的
3 <body onload=setTimeout('window.location.href="index.htm"',5000)>
这里面是5000毫秒(5秒)网页转向
<body onload…………>和<body window.open…………>的区别是什么?
onload是当页面加载完成后执行的动作,location.href其实就是self.location.href将当前页面跳转,window.open是打开新的窗口