php短視訊原始碼,自動生成驗證碼,支援點選更換驗證碼數字

zhibo系統開發發表於2022-04-08

php短視訊原始碼,自動生成驗證碼,支援點選更換驗證碼數字

<!DOCTYPE html>
<html>
 
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Document</title>
    <style>
        .v_code {
            width: 600px;
            margin: 0 auto;
        }
 
        .v_code>input {
            width: 60px;
            height: 36px;
            margin-top: 10px;
        }
 
        .code_show {
            overflow: hidden;
        }
 
        .code_show span {
            display: block;
            float: left;
            margin-bottom: 10px;
        }
 
        .code_show a {
            display: block;
            float: left;
            margin-top: 10px;
            margin-left: 10px;
        }
 
        .code {
            font-style: italic;
            background-color: #f5f5f5;
            color: blue;
            font-size: 30px;
            letter-spacing: 3px;
            font-weight: bolder;
            float: left;
            cursor: pointer;
            padding: 0 5px;
            text-align: center;
        }
 
        #inputCode {
            width: 100px;
            height: 30px;
        }
 
        a {
            text-decoration: none;
            font-size: 12px;
            color: #288bc4;
            cursor: pointer;
        }
 
        a:hover {
            text-decoration: underline;
        }
    </style>
</head>
 
<body>
    <div>
        <div>
            <span id="checkCode"></span>
            <a id="linkbt">看不清換一張</a>
        </div>
 
        <div>
            <label for="inputCode">驗證碼:</label>
            <input type="text" id="inputCode" />
            <span id="text_show"></span>
        </div>
        <input id="Button1" type="button" value="確定" />
    </div>
    <script>
        //6位數 0-9 a-f 隨機生成,內容必須是0-9 a-f字串
        window.onload = function () {
            var res = getCode();//當頁面載入的時候呼叫下面獲取6位字串的方法
            document.getElementById('checkCode').innerText = res;//把它賦值給span顯示
 
            //獲取6位字串的方法
            function getCode() {
                //定義字元陣列
                var arr = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9', 'a', 'b', 'c', 'd', 'e', 'f'];
                var str = '';//定義空的字串,作為最終的結果接收它
                for (var i = 0; i < 6; i++) {
                    var num = Math.round(Math.random() * (15 - 0) + 0);//0-15的隨機數
                    str += arr[num];//通過產生的隨機數來獲取陣列中的內容
                }
                return str;
            }
 
 
            //當點選連線換一張時呼叫方法重新生成6位字串賦值給span
            document.getElementById('linkbt').onclick = function () {
                document.getElementById('checkCode').innerText = getCode();
            }
 
            //功能2:提交時進行驗證輸入是否正確
            document.getElementById('Button1').onclick = function () {
                var code = document.getElementById('checkCode').innerText;
                var inputCode = document.getElementById('inputCode').value;
                if (code != inputCode) {
                    alert('您輸入的驗證碼不正確');
                    //讓輸入框為空,清空輸入框
                    document.getElementById('inputCode').value = '';
                }
            }
        }
 
    </script>
</body>
 
</html>

以上就是 php短視訊原始碼,自動生成驗證碼,支援點選更換驗證碼數字實現的相關程式碼,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2886193/,如需轉載,請註明出處,否則將追究法律責任。

相關文章