跳过正文
  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>

Load Giscus
or