我是靠谱客的博主 合适万宝路,最近开发中收集的这篇文章主要介绍学习js之百度网盘动态获取邮箱验证码(完整源码)即将分段学习 (js完整源码),觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

今天使用某多多购买百度网盘SVIP会员,由于登录需要邮箱验证码验证,故学习该网页源码。

即将分段学习 (js完整源码)

<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小时内完成验证。)
百度帐号团队
20201223日
绑定百度帐号管家,收取验证码不再等待!
赶紧扫描下载吧
 
</td><td>2020-12-23 09:45:00</td></tr><tr><td id='m2' style="border-style: 2;">
亲爱的用户:
您好!感谢您使用百度服务,您的账号(nh***89)正在进行邮箱验证,本次请求的验证码为:
922047(为了保障您帐号的安全性,请在1小时内完成验证。)
百度帐号团队
20201223日
绑定百度帐号管家,收取验证码不再等待!
赶紧扫描下载吧
 
</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部分

<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部分

<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之百度网盘动态获取邮箱验证码(完整源码)即将分段学习 (js完整源码)所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(50)

评论列表共有 0 条评论

立即
投稿
返回
顶部