-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathupload.html
More file actions
43 lines (43 loc) · 976 Bytes
/
Copy pathupload.html
File metadata and controls
43 lines (43 loc) · 976 Bytes
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
<!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 upload">
<ul>
<li>
关键词一:<input class="input" id="key1" type="text" placeholder="请输入" />
</li>
<li>
关键词二:<input class="input" id="key2" type="text" placeholder="请输入" />
</li>
</ul>
<div class="btn green uploadBtn">
确定提交
</div>
<div class="btn gray back">
返回菜单
</div>
</div>
<script src="js/jquery.1.9.1.min.js">
</script>
<script src="js/wx.js">
</script>
<script>
$('.uploadBtn').click(function()
{
WX.upload();
});
$('.back').click(function()
{
location.href = 'guild.html';
});
</script>
</body>
</html>