-
Notifications
You must be signed in to change notification settings - Fork 3
/
guild.html
60 lines (60 loc) · 1.1 KB
/
guild.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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="user-scalable=no,width=device-width" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>
谁是卧底微信版
</title>
<link href="js/css.css" rel="stylesheet" type="text/css">
</head>
<body>
<div class="window">
<ul>
<li class="teach">
游戏玩法说明
</li>
</ul>
<ul>
<li class="upload">
上传身份词
</li>
</ul>
<!--
<ul>
<li class="about">
关于我们
</li>
<li>
微信账号:xxxxxxxxxx
</li>
</ul>
-->
<div class="btn gray back">
返回菜单
</div>
</div>
<script src="js/jquery.1.9.1.min.js">
</script>
<script src="js/wx.js">
</script>
<script>
$('.back').click(function()
{
location.href = 'index.html';
});
$('.teach').click(function()
{
location.href = 'teach.html';
});
$('.upload').click(function()
{
location.href = 'upload.html';
});
$('.about').click(function()
{
location.href = 'about.html';
});
</script>
</body>
</html>