1. 程式人生 > >隨機驗證碼-賬號密碼驗證

隨機驗證碼-賬號密碼驗證

位數 撒旦 cti asa username -c 用戶 隨機驗證碼 title

一、默認賬號密碼為admin 驗證正確 然後繼續驗證驗證碼==隨機驗證碼 全部正確跳轉login.html

重點:Math.random(0-1)隨機獲取0-1的隨機數

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <style>
        input{margin-bottom: 10px}

    </style>
</head>
<body
> <form action=""> userName: <input type="text"><br /> password: <input type="password"><br /> 驗證碼: <input type="text"><span id="span">1111</span><br /> <input type="button" value="提交" id="btn"> </form> <script> var
span=document.getElementById("span") var btn=document.getElementById("btn") var input=document.getElementsByTagName("input") // alert(input[0]) // span.innerHTML= parseInt(Math.random()*9000+1000) //純4位數字驗證 var str="asdjsakldjsalkjdl3513kjasad撒旦撒打算544561351231" var str2="" for(var i=
0;i<4;i++){ str2+= str.charAt(Math.random()*30+10) } span.innerHTML=str2 btn.onclick=function () { if (input[0].value=="admin"){ if(input[1].value=="admin"){ if (input[2].value==span.innerHTML){ location.href="login.html" }else{ alert("請輸入正確的驗證碼") } }else{ alert("請輸入正確的密碼") } }else{ alert("請輸入正確的用戶名") } } </script> </body> </html>

隨機驗證碼-賬號密碼驗證