JavaScript實現(xiàn)點擊切換驗證碼及校驗
更新時間:2021年01月10日 09:08:21 作者:棟棟很優(yōu)秀啊
這篇文章主要為大家詳細介紹了JavaScript實現(xiàn)點擊切換驗證碼及校驗,文中示例代碼介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們可以參考一下
本文實例為大家分享了JavaScript實現(xiàn)點擊切換驗證碼及校驗的具體代碼,供大家參考,具體內(nèi)容如下
效果:
代碼:
<!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>
以上就是本文的全部內(nèi)容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
bootstrap模態(tài)框關(guān)閉后清除模態(tài)框的數(shù)據(jù)方法
今天小編就為大家分享一篇bootstrap模態(tài)框關(guān)閉后清除模態(tài)框的數(shù)據(jù)方法,具有很好的參考價值,希望對大家有所幫助。一起跟隨小編過來看看吧2018-08-08JavaScript算法題之如何將一個數(shù)組旋轉(zhuǎn)k步
這篇文章主要給大家介紹了關(guān)于JavaScript算法題之如何將一個數(shù)組旋轉(zhuǎn)k步的相關(guān)資料,文中通過實例代碼介紹的非常詳細,對大家的學習或者工作具有一定的參考學習價值,需要的朋友可以參考下2022-03-03JS禁用右鍵、禁用Ctrl+u、禁用Ctrl+s、禁用F12的實現(xiàn)代碼
最近項目需要屏蔽客戶端的一些操作,加大查看源碼等難度,特整理一下這個js,也防止客戶端用戶誤操作,破解方放也很簡單這里就不多說了2020-10-10JS實現(xiàn)帶緩沖效果打開、關(guān)閉、移動一個層的方法
這篇文章主要介紹了JS實現(xiàn)帶緩沖效果打開、關(guān)閉、移動一個層的方法,涉及javascript鼠標事件及頁面元素操作技巧,需要的朋友可以參考下2015-05-05前端使用JS內(nèi)置Blob實現(xiàn)下載各種形式的文件實例
通過使用JavaScript我們可以很方便地實現(xiàn)文件的下載功能,這篇文章主要給大家介紹了關(guān)于前端使用JS內(nèi)置Blob實現(xiàn)下載各種形式文件的相關(guān)資料,文中通過代碼介紹的非常詳細,需要的朋友可以參考下2024-06-06