您好,登錄后才能下訂單哦!
這期內容當中小編將會給大家帶來有關利用JavaScript怎么實現點擊切換驗證碼功能,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
代碼:
<!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>
上述就是小編為大家分享的利用JavaScript怎么實現點擊切換驗證碼功能了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。