今天使用某多多购买百度网盘SVIP会员,由于登录需要邮箱验证码验证,故学习该网页源码。
即将分段学习 (js完整源码)
复制代码
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113<html xmlns="http://www.w3.org/1999/xhtml" > <head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" /> <title>邮箱监控</title> <style type="text/css"> #Text1 { width: 190px; height:32; } </style> <script language="javascript" type="text/javascript"> function Submit1_onclick() { var a=document.getElementById('Text1'); var b=document.getElementById('Submit1'); window.location.href='http://172.27.123.14:80/index.htm?d='+a.value; } </script> <script type="text/javascript"> function replaceSpace(obj) { obj.value = obj.value.replace(/s/gi,'') } function copyLink() { var Url2=document.getElementById("m1").innerText; var oInput = document.createElement('input'); oInput.value = Url2.match(/d{6}/); document.body.appendChild(oInput); oInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令 oInput.className = 'oInput'; oInput.style.display='none'; alert('复制成功'); } s=10; function showtime() { var str,time; time=new Date(); str=s.toString()+"秒后自动获取验证码"; document.getElementById("time").innerHTML="<a style='width:100%;font-size:36px'>"+str+"</a>"; s--; if(s<=0) { clearInterval(myvar); document.getElementById("time").display="none"; location.reload(true); } } var myvar; if(s>0){ myvar=setInterval("showtime()",1000);} </script> </head> <body style="text-align: center"> <form id="form1" method="post" action="/"> <div style="top: 100px; position: static; font-size: x-large; color: #FF0000; height: 135px;"> 公告:所有客户进来,一定要低版本,在下面链接有,不下的话,你会出现申诉状态</div> <p> <input id="Text1" name="d" type="text" placeholder="请在这里输入百度号" onBlur="replaceSpace(this)" /> <input id="Submit1" style="background-color: #009999;height:32" type="submit" value="获取验证码" onclick="showtime()" /> <input id="Submit2" style="background-color: #009999;height:32" type="button" value="复制验证码" onclick="copyLink()" /> <input name="action" type="hidden" value="search" /> </p> <table border = 1; style="width:360px; position: relative; text-align: center;border-collapse:collapse;" align="center"> <tr><td id='m1' style="border-style: 2;"> 亲爱的用户: 您好!感谢您使用百度服务,您的账号(nhbb89)正在进行邮箱验证,本次请求的验证码为: 922047(为了保障您帐号的安全性,请在1小时内完成验证。) 百度帐号团队 2020年12月23日 绑定百度帐号管家,收取验证码不再等待! 赶紧扫描下载吧 </td><td>2020-12-23 09:45:00</td></tr><tr><td id='m2' style="border-style: 2;"> 亲爱的用户: 您好!感谢您使用百度服务,您的账号(nh***89)正在进行邮箱验证,本次请求的验证码为: 922047(为了保障您帐号的安全性,请在1小时内完成验证。) 百度帐号团队 2020年12月23日 绑定百度帐号管家,收取验证码不再等待! 赶紧扫描下载吧 </td><td>2020-12-23 09:42:13</td></tr> </table> </form> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='https://wwx.lanzoux.com/b00bj7zeh'">电脑出现申诉:点我下载低版本</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='http://note.youdao.com/noteshare?id=e1673b1e1f1a176fb97a0f95651fc9b9'">手机出现申诉:点我下载低版本</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='https://wwx.lanzoux.com/b0ceqdbcj'">限速的话点我:下载KD配合超级会员</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='http://119.45.48.43:8889/ck'">查询COOKIE:配合KD的</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='http://8.131.78.226/index3.html'">KD下载:点我下载KD</button> </div> </body> </html>
head部分
复制代码
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<head> <meta http-equiv="Content-Type" content="text/html;charset=utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no"> <title>邮箱监控</title> <style type="text/css"> #Text1 { width: 190px; height:32; } </style> <script language="javascript" type="text/javascript"> function Submit1_onclick() { var a=document.getElementById('Text1'); var b=document.getElementById('Submit1'); window.location.href='http://172.27.123.14:80/index.htm?d='+a.value; } </script> <script type="text/javascript"> function replaceSpace(obj) { obj.value = obj.value.replace(/s/gi,'') } function copyLink() { var Url2=document.getElementById("m1").innerText; var oInput = document.createElement('input'); oInput.value = Url2.match(/d{6}/); document.body.appendChild(oInput); oInput.select(); // 选择对象 document.execCommand("Copy"); // 执行浏览器复制命令 oInput.className = 'oInput'; oInput.style.display='none'; alert('复制成功'); } s=10; function showtime() { var str,time; time=new Date(); str=s.toString()+"秒后自动获取验证码"; document.getElementById("time").innerHTML="<a style='width:100%;font-size:36px'>"+str+"</a>"; s--; if(s<=0) { clearInterval(myvar); document.getElementById("time").display="none"; location.reload(true); } } var myvar; if(s>0){ myvar=setInterval("showtime()",1000);} </script> </head>
body部分
复制代码
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<body style="text-align: center"> <form id="form1" method="post" action="/"> <div style="top: 100px; position: static; font-size: x-large; color: #FF0000; height: 135px;"> 公告:所有客户进来,一定要低版本,在下面链接有,不下的话,你会出现申诉状态</div> <p> <input id="Text1" name="d" type="text" placeholder="请在这里输入百度号" onblur="replaceSpace(this)"> <input id="Submit1" style="background-color: #009999;height:32" type="submit" value="获取验证码" onclick="showtime()"> <input id="Submit2" style="background-color: #009999;height:32" type="button" value="复制验证码" onclick="copyLink()"> <input name="action" type="hidden" value="search"> </p> <table border="1;" style="width:360px; position: relative; text-align: center;border-collapse:collapse;" align="center"> <tbody><tr><td id="m1" style="border-style: 2;"> 亲爱的用户: 您好!感谢您使用百度服务,您的账号(nhbb89)正在进行邮箱验证,本次请求的验证码为: 922047(为了保障您帐号的安全性,请在1小时内完成验证。) 百度帐号团队 2020年12月23日 绑定百度帐号管家,收取验证码不再等待! 赶紧扫描下载吧 </td><td>2020-12-23 09:45:00</td></tr><tr><td id="m2" style="border-style: 2;"> 亲爱的用户: 您好!感谢您使用百度服务,您的账号(nh***89)正在进行邮箱验证,本次请求的验证码为: 922047(为了保障您帐号的安全性,请在1小时内完成验证。) 百度帐号团队 2020年12月23日 绑定百度帐号管家,收取验证码不再等待! 赶紧扫描下载吧 </td><td>2020-12-23 09:42:13</td></tr> </tbody></table> </form> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='https://wwx.lanzoux.com/b00bj7zeh'">电脑出现申诉:点我下载低版本</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='http://note.youdao.com/noteshare?id=e1673b1e1f1a176fb97a0f95651fc9b9'">手机出现申诉:点我下载低版本</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='https://wwx.lanzoux.com/b0ceqdbcj'">限速的话点我:下载KD配合超级会员</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='http://119.45.48.43:8889/ck'">查询COOKIE:配合KD的</button> </div> <div style="margin-top:10px"> <button type="button" class="yongyin" style="width:300px; height:30px; background-color: #f37b1d;" onclick="location='http://8.131.78.226/index3.html'">KD下载:点我下载KD</button> </div> </body>
最后
以上就是合适万宝路最近收集整理的关于学习js之百度网盘动态获取邮箱验证码(完整源码)即将分段学习 (js完整源码)的全部内容,更多相关学习js之百度网盘动态获取邮箱验证码(完整源码)即将分段学习内容请搜索靠谱客的其他文章。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复