首页 > 代码库 > 网页自动跳转方法整理

网页自动跳转方法整理

现在公司推广业务碰到一些,大量客户需要将推广落地页设为自己了网址,开始帮几个业务人员制作了一个简单的自动跳转的HTML的网页,解决了客户的问题。虽然简单,用得人多了没有时间手动制作一个个制作,写了个简单的在线生成HTML网页自动跳转的工具供他们用,终于省心了。

顺便整理了下网页自动跳转方法

一、HTML实现网页自动跳转

 

<head><!-- 以下方式只是刷新不跳转到其他页面 --><meta http-equiv="refresh" content="10"><!-- 以下方式定时转到其他页面 --><meta http-equiv="refresh" content="5;url=hello.html"> </head>

二、JS(JavaScript)网页自动跳转

<script language="javascript" type="text/javascript"> // 以下方式直接跳转window.location.href=http://www.mamicode.com/hello.html;// 以下方式定时跳转setTimeout("javascript:location.href=http://www.mamicode.com/‘hello.html‘", 5000); </script>

需要直接在线生成的可以猛击这里:http://www.56b2b.cn/t/8/