-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
64 lines (57 loc) · 2.34 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="zh-cn">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>老设备导航</title>
<!--[if lt IE 9]>
<script src="https://cdn.bootcdn.net/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
<![endif]-->
<link rel="stylesheet" type="text/css" href="style.css">
</head>
<body>
<noscript>
<!--向不支持JS脚本的浏览器报错-->
<h1>JavaScript Required! You must enable JavaScript for the Web to work properly</h1>
</noscript>
<h3>老设备导航-让老设备焕发第二春!</h3>
<!--时钟-->
<div id="nowDiv"></div>
<!--搜索栏-->
<form onsubmit="bingSearch(); return false;">
<input id="searchBar" type=text title="输入搜索词"/>
<button id="searchButtons" type="button" title="搜索网页" onclick="bingSearch()">必应搜索</button>
</form>
<span class="sitesUrl">
<p><a href="radio.html">听广播</a></p>
<p><li><a href="/html/nokia.html">Java手机/诺基亚资源</a></li></p>
<p><li><a href="/html/ios.html">iOS6资源</a></li></p>
<p><li><a href="/html/android.html">老安卓资源</a></li></p>
<p><li><a href="/html/bbos.html">BBOS资源</a></li></p>
<p><li><a href="/html/wmwp.html">WM&WP资源</a></li></p>
<p><li><a href="/html/wapgame.html">wap手机游戏</a></li></p>
<p><li><a href="/html/forum.html">老设备论坛/贴吧</a></li></p>
</span>
<!--网站统计-->
<a href="https://wapmz.com/in/10"><img src="https://wapmz.com/cn/small/10" alt="wapmz.com"></a>
<script>
show();
function show() {
let date = new Date();
let now = "";
now = date.getFullYear()+"年";
now = now + (date.getMonth()+1)+"月";
now = now + date.getDate()+"日";
now = now + date.getHours()+"时";
now = now + date.getMinutes()+"分";
now = now + date.getSeconds()+"秒";
document.getElementById("nowDiv").innerHTML = now;
setTimeout("show()",1000);
}
function bingSearch() {
let v=document.getElementById("searchBar");
location.href="http://bing.com/search?q="+v.value;
}
</script>
</body>
</html>