您的位置: 站云中国 » 资源素材 » 网页自动跳转代码
网页自动跳转代码
2011-12-11 09:44 站云中国


 

html网页自动跳转代码,content后面的数字是秒数,0表示立即跳转,比如您想5秒后跳转到新页面,请修改成5即可。

url后面为你要跳转打开的网址,注意网址前需要加http://


 



<!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="refresh" content="0;url=http://www.lanrentuku.com">

<title>网页自动跳转代码 </title>
</head>

<body>
<p><strong>网页自动跳转代码</strong></p>
<p>更多代码请访问:<a href="http://www.zyuncn.com/" target="_blank">站云中国</a></p>
</body>
</html>