惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

C
Check Point Blog
奇客Solidot–传递最新科技情报
奇客Solidot–传递最新科技情报
GbyAI
GbyAI
WordPress大学
WordPress大学
月光博客
月光博客
V
Visual Studio Blog
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More
Google DeepMind News
Google DeepMind News
H
Help Net Security
MongoDB | Blog
MongoDB | Blog
P
Proofpoint News Feed
博客园 - 司徒正美
S
SegmentFault 最新的问题
Apple Machine Learning Research
Apple Machine Learning Research
Blog — PlanetScale
Blog — PlanetScale
B
Blog
Cyber Security Advisories - MS-ISAC
Cyber Security Advisories - MS-ISAC
H
Hackread – Cybersecurity News, Data Breaches, AI and More
Microsoft Azure Blog
Microsoft Azure Blog
V
V2EX
L
LangChain Blog
腾讯CDC
T
The Blog of Author Tim Ferriss
量子位

博客园 - 吹吹风----NICK

mysql常用语句 MySQL的查询性能优化 实用MYSQL语句收集 转贴 DISCUZ7.0 恢复被删除的会员的UID MySQL批量替换指定字段字符串 discuz 7.0 主题 添加 查看 回复 - 吹吹风----NICK FLASH 全屏ACTION 代码 - 吹吹风----NICK 每个月每个季节成熟的水果 Google和百度、雅虎的站内搜索代码 - 吹吹风----NICK - 博客园 total command 指南(转载) 网站速度测试 google 本地商户中心常见的问题’ 冬季宝宝不着凉有绝招 #2006 - MySQL server has gone away 问题解决方法 phpmyadmin 3 最新版安装配置方法 华为ADSL路由设置 “phpmyadmin 无法载入 mcrypt 扩展,<br />请检查 PHP 配置”解决办法 phpmyadmin的乱码问题 沙滩鞋除臭法--针对常见户外沙滩鞋来讲
HTML页面跳转 - 吹吹风----NICK - 博客园
吹吹风----NICK · 2009-10-17 · via 博客园 - 吹吹风----NICK

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

1.
<html>
<body>
<meta http-equiv="refresh" content="0;url=http://88223100.cnblogs.com">
</body>
</html>

2.
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>欢迎访问</title>
</head>
<body onLoad="parent.location='http://88223100.cnblogs.com&/#39;">
</body>
</html>
3.
<script language="JAVASCRIPT">
setTimeout("document.location.href="/index.asp'",0);
</script>
放在<body></body>之间就可以了!!