1 Star 0 Fork 5

lizi梨子教育/小游戏平台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
404.html 1.19 KB
一键复制 编辑 原始数据 按行查看 历史
Ker牌牛奶 提交于 2020-12-28 08:31 . update 404.html.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>该页面不存在</title>
<link rel="stylesheet" href="css/404.css">
<script src="js/jquery-3.1.0.min.js"></script>
</head>
<body>
<div class="auto">
<div class="container">
<div class="settings">
<i class="icon"></i>
<h4>很抱歉!没有找到您要访问的页面!</h4>
<p><span id="num">5</span> 秒后将自动跳转到首页</p>
<div>
<a href="../" title="返回首页" target="_blank">返回首页</a>
<a href="javascript:;" title="上一步" id="reload-btn">上一步</a>
</div>
</div>
</div>
</div>
<script>
//倒计时跳转到首页的js代码
var $_num=$("#num");
var num=parseInt($_num.html());
var numId=setInterval(function(){
num--;
$_num.html(num);
if(num===0){
//跳转地址写在这里
window.location.href="https://www.zsxcool.com";
}
},1000);
//返回按钮单击事件
var reloadPage = $("#reload-btn");
reloadPage.click(function(e){
window.history.back();
});
</script>
</body>
</html>
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
HTML
1
https://gitee.com/zk_deppon/games.git
git@gitee.com:zk_deppon/games.git
zk_deppon
games
小游戏平台
master

搜索帮助