-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
27 lines (27 loc) · 848 Bytes
/
index.html
File metadata and controls
27 lines (27 loc) · 848 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
<!Doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="css/details.css"/>
<title>验证码</title>
</head>
<body>
<div class="ddetails-header">
<div class="ddetails-con">
<div class="J_after">
<input type="hidden" id="J_down" data-link="'+data.downUrl+'">
<div class="checkcode">
<input type="text" id="J_codetext" placeholder="请输入验证码" maxlength="4">
<canvas class="J_codeimg" id="myCanvas" onclick="createCode()">
您的浏览器不支持canvas元素。
</canvas>
</div>
<input type="button" value="提交" class="btn-code" onClick="validate();">
<input type="button" value="取消" class="btn-code btn-no">
</div>
</div>
</div>
</body>
</html>
<script src="js/jquery-1.9.1.min.js"></script>
<script src="js/index.js"></script>