我们日常上网的时,登录注册账号往往都需要输入验证码,但是如果一些验证码干扰项太多,那么用户看不清,就需要有切换验证码及校验的功能,那么这要怎样做呢?下面就给大家分享js实现简单点击切换验证码的代码,需要的朋友可以参考学习。
效果:
代码:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style> div { width: 100px; height: 40px; background-color: red; color: #fff; text-align: center; line-height: 40px; font-size: 30px; font-weight: 900; user-select: none; } .show { position: absolute; left: 0; top: 0; right: 0; bottom: 0; margin: auto; width: 200px; height: 100px; background-color: pink; text-align: center; line-height: 100px; font-size: 40px; font-weight: 900; display: none; } </style> </head> <body> <div></div> <input type="text" value="请输入上图的验证码" /> <button>注册</button> <div class="show">等待中。。。。</div> <script type="text/javascript"> //1000-9999 var div = document.getElementsByTagName("div"); var inp = document.getElementsByTagName("input")[0]; var btn = document.getElementsByTagName("button")[0]; div[0].innerHTML = ranFun(1000, 9999); inp.onclick = function () { this.value = "" } div[0].onclick = function () { this.innerHTML = ranFun(1000, 9999) } btn.onclick = function () { if (inp.value == div[0].innerHTML) { div[1].style.display = "block"; setTimeout(function () { location.href = "register.html" }, 3000) } else { alert('验证码错误') div[0].innerHTML = ranFun(1000, 9999); inp.value = "" } } function ranFun(a, b) { return Math.floor(Math.random() * (b - a + 1) + a) } </script> </body> </html>
以上就是关于js实现点击切换验证码的介绍,希望大家阅读完这篇文章能有所收获,想要了解更多JS实现验证码的内容,可以关注其他相关文章。
文本转载自脚本之家
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:mmqy2019@163.com进行举报,并提供相关证据,查实之后,将立刻删除涉嫌侵权内容。
长按识别二维码并关注微信
更方便到期提醒、手机管理