-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path404.html
98 lines (88 loc) · 3.65 KB
/
404.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>鲁虺密码生成器</title>
<meta name="keywords" content="国内最全的鲁虺密码生成器库,鲁虺密码生成器数据库,鲁虺密码生成器地址库,鲁虺权威密码生成器数据库,鲁虺标准密码生成器数据库,鲁虺QQ密码生成器地址库,鲁虺QQ密码生成器查询,鲁虺准确的密码生成器库,鲁虺免费密码生成器库,鲁虺密码生成器查询,鲁虺密码生成器搜索,鲁虺密码生成器">
<meta name="description" content="国内最全的鲁虺密码生成器库,鲁虺密码生成器数据库,鲁虺密码生成器地址库,鲁虺权威密码生成器数据库,鲁虺标准密码生成器数据库,鲁虺QQ密码生成器地址库,鲁虺QQ密码生成器查询,鲁虺准确的密码生成器库,鲁虺免费密码生成器库,鲁虺密码生成器查询,鲁虺密码生成器搜索,鲁虺密码生成器">
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
table{margin: 250px auto;text-align: center; border-right:1px solid #ddd;border-bottom:1px solid #ddd;}
thead,tfoot{background: #fff;font-weight: 800;}
tbody{background: #f5f5f5;}
table td{border-left:1px solid #ddd;border-top:1px solid #ddd;padding: 5px 10px;}
table tbody td input{width:270px;}
</style>
</head>
<body>
<table border="0" cellspacing="0" cellpadding="0">
<thead>
<tr><td colspan="2">鲁虺密码生成器</td></tr>
</thead>
<tbody>
<tr>
<td>密码长度</td>
<td><input type="text" value="32" placeholder="密码长度"></td>
</tr>
<tr>
<td>密码</td>
<td><input type="text" value="" placeholder="密码"></td>
</tr>
</tbody>
<tfoot>
<tr><td colspan="2"><input type="button" value="生成"></td></tr>
</tfoot>
</table>
<script>
var input = document.getElementsByTagName('input');
input[2].onclick = function () {
input[1].value = rand(input[0].value);
}
function rand (leng) {
var key = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*';
var keys = '';
for (i = 0; i < leng; i++) {
var keyl = parseInt(key.length * Math.random());
keys += key[keyl];
}
return keys;
}
</script>
<!--百度自动推送代码-->
<script>
(function(){
var bp = document.createElement('script');
bp.src = '//push.zhanzhang.baidu.com/push.js';
var s = document.getElementsByTagName("script")[0];
s.parentNode.insertBefore(bp, s);
})();
</script>
<!--百度自动推送代码-->
<!-- 网址安全插件开始 -->
<script type="text/javascript">
var _svq_ = _svq_ || [];
_svq_.push(['set_api_key', '16adflfafads9gf28327005056b68c3d']);
_svq_.push(['set_noicon_class', '']); //链接前不显示任何图标,如果需要显示,请去掉这句
_svq_.push(['set_nopopup_class', '-sv-no-popup']);
_svq_.push(['check_page']);
(function(){
var aq = document.createElement('script');
aq.type = 'text/javascript';
aq.async = true;
aq.charset = 'utf-8';
aq.src = 'http://openapi.anquan.org/static/aq.js';
var s = document.getElementsByTagName('script')[0];
s.parentNode.insertBefore(aq, s);
})();
</script>
<!-- 网址安全插件结束 -->
<div style="display:none">
<script src="http://s11.cnzz.com/z_stat.php?id=610720&web_id=610720" language="JavaScript"></script>
</div>
<div class="copyright pr" style="text-align: center; margin-left: 0px;">
<p>
Copyright 2004-01-11 <a href="http://www.luhui.net" title="鲁虺文化网">luhui.net</a> all rights reserved.
</p>
</div>
</body>
</html>