跳过正文
  1. Blogs/

网页跳转备忘

·92 字·1 分钟· ·
代码 Gohtml 代码 网页 Html 跳转
作者
大大的小蜗牛
机会总是垂青于有准备的人!
目录

1、html 的实现:

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

2、javascript 的实现:

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

相关文章

网页黑白代码
·73 字·1 分钟
日志 Gray-Html 代码 网页 Html 黑白
对博客的小改动
·655 字·2 分钟
日志 Changlogs 博客 小记 改动 优化 代码
运营小记 20130509
·82 字·1 分钟
日志 20130509 计划 小记 运营 天猫

加载Giscus评论,或者