码迷,mamicode.com
首页 > Web开发 > 详细

可以放在html代码中的自动跳转代码

时间:2016-05-01 06:32:59      阅读:215      评论:0      收藏:0      [点我收藏+]

标签:

可以放在html代码中的自动跳转代码

 

有3种方法可以实现html的页面跳转,1,refresh   2,onload事件中加入代码  3,js实现

1、
<html>
<body>
<meta http-equiv="refresh" content="0;url=http://www.baidu.cn">
</body>
</html>

2、
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>欢迎访问</title>
</head>
<body onLoad="parent.location=‘http://www.baidu.cn‘">
</body>
</html>

3、
<script language="JAVASCRIPT">
setTimeout("document.location.href=‘http://www.baidu.com“,0);
</script>
放在<body></body>之间就可以了!!

可以放在html代码中的自动跳转代码

标签:

原文地址:http://www.cnblogs.com/destim/p/5449983.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!