怎么用HTML,实现打开一个网页一秒后,自动跳到另一个网页
加一个meta标记或写一个js代码,把写好的代码保存为html文件就可以了。
点菜单栏-> 工具->internet选项(或选项) ->常规 在这里设置主页就可以选择自己要跳转的页面。
代码例如:
<!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=gb2312" /><meta http-equiv="Content-Language" content="zh-CN">
<meta HTTP-EQUIV="Content-Type"CONTENT="text/html; charset=gb2312"><meta http-equiv="refresh"content="0.1;url= http://www.cnvzz.cn">
</head>
<body>
</body>
</html>
参考资料
百度.百度[引用时间2018-1-5]
<script language="javascript" type="text/javascript">
window.setTimeout("window.location='你的指定页面地址'",1000);
</script>
<!--定时转到其他页面 ,其中refresh:表示刷新,content的单位是秒,url的值为要跳的地址-->
<meta http-equiv="refresh" content="1;url=https://www.baidu.com/">
</head>
eg:打开这个网址,一秒后跳入百度
<!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="refresh" content="1;url=https://www.baidu.com/">
<title>无标题文档</title>
</head>
<h2>哈哈哈哈</h2>
<body>
</body>
</html>