微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

自动重定向到另一个HTML页面

使页面自动重定向到单独文件夹中的不同HTML文件的语法是什么?我的所有搜索都返回如何从一个网站重定向到另一个网站.

解决方法

其中一个将起作用……
<html>
<head>
<title>A web page that points a browser to a different page after 2 seconds</title>
<Meta http-equiv="refresh" content="2; URL=http://example.com/services/computing/">
<Meta name="keywords" content="automatic redirection">
</head>
<body>
If your browser doesn't automatically go there within a few seconds,you may want to go to 
<a href="http://example.com/">the destination</a> 
manually.
</body>
</html>

……或者它可以用JavaScript完成.此JavaScript示例在4.5秒(4500毫秒)延迟后在新的浏览器窗口中打开新站点

<script language="javascript" type="text/javascript">
     <!--
     window.setTimeout('window.open("http://example.com/","newsite")',4500);
     // -->
 </script>

原文地址:https://www.jb51.cc/html/232463.html

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐