当前位置:网站首页>Jump to an interface at a specified time. (Web Development)
Jump to an interface at a specified time. (Web Development)
2022-06-12 08:30:00 【Dyansts】
The first most common method .
Use js Jump
<script language="JavaScript" type="text/javascript">
var s =5; // Countdown seconds
var URL ;
function Load(url){
URL =url;
for(var i=s;i>=0;i--)
{
window.setTimeout('doUpdate(' + i + ')', (s-i) * 1000);
}
}
function doUpdate(n)
{
document.getElementById('time').innerHTML = n;
if(n == 0) { window.location=URL; }
}
Load("#");
</script>
<body>
<div style="text-align:center">
<b> The page you visited was not found <span id="time" style="color:red"></span> Jump to the home page in seconds !</b>
<a href="#"> If the page you visited is not found, click to jump to the home page !</a>
</div>The second is simple , brief introduction
<meta http-equiv="Refresh" content="5;url=#">边栏推荐
- 【 pointeur avancé Ⅲ】 mise en œuvre de la fonction de tri rapide qsort& fonction de rappel en langage C
- vscode 下载慢解决办法
- Error: clear the history in the search box in the website?
- Installation series of ROS system (II): ROS rosdep init/update error reporting solution
- 电气火灾探测器对各用电回路进行实时监控
- Hands on deep learning -- image classification dataset fashion MNIST
- X64dbg debugging exception_ ACCESS_ VIOLATION C0000005
- The era of post MES system has come gradually
- What scheduling rules does the APS software have? What is the exception handling scheme?
- ERP的生产管理与MES管理系统有什么差别?
猜你喜欢

The electrical fire detector monitors each power circuit in real time

ctfshow web4

Hypergeometric cumulative distribution test overlap

Map the world according to the data of each country (take the global epidemic as an example)

Ankerui motor protector has the functions of overload inverse time limit, overload definite time limit, grounding, starting timeout, leakage, underload, phase failure, locked rotor, etc

In the era of intelligent manufacturing, how do enterprises carry out digital transformation

How to understand the production scheduling of APS system?

Instructions spéciales pour l'utilisation du mode nat dans les machines virtuelles VM

What exactly is APS? You will know after reading the article

数据库基础——规范化、关系模式
随机推荐
余压监控系统保证火灾发生时消防疏散通道的通畅,为大型高层建筑的安全运行和人民生命财产安全保驾护航
ctfshow web4
制造企业生产排产现状和APS系统的解决方案
Production scheduling status of manufacturing enterprises and solutions of APS system
MYSQL中的锁的机制
MPLS的原理与配置
Ankerui motor protector has the functions of overload inverse time limit, overload definite time limit, grounding, starting timeout, leakage, underload, phase failure, locked rotor, etc
判断对象是否为空
Easyexcel exports excel tables to the browser, and exports excel through postman test [introductory case]
MES系统质量追溯功能,到底在追什么?
三国杀周边--------猪国杀题解
The electrical fire detector monitors each power circuit in real time
FDA reviewers say Moderna covid vaccine is safe and effective for children under 5 years of age
JVM learning notes: garbage collection mechanism
How to understand the production scheduling of APS system?
后MES系统的时代,已逐渐到来
Arrays in JS
(P17-P18)通过using定义基础类型和函数指针别名,使用using和typedef给模板定义别名
Ankerui fire emergency lighting and evacuation indication system
JVM学习笔记:垃圾回收机制