js學習總結----字串和Math綜合應用-驗證碼(4位)

來源:互聯網
上載者:User

標籤:總結   head   strong   family   abs   doctype   字串   驗證   for   

具體代碼如下:

<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <title>Document</title>    <style>        body,div,ul,li{            margin:0;            padding: 0;            font-family: Arial;            font-size:12px;            -webkit-user-select:none;        }        #code{            width:100px;            height:50px;            line-height: 50px;            text-align:center;            border:1px solid #ff0000;            cursor:pointer;            top:50%;            left:50%;            position:absolute;            margin-left:-50px;            margin-top:-25px;            letter-spacing: 3px        }            </style></head><body>    <div id=‘code‘>xf2d</div>    <script type=‘text/javascript‘>        //設定隨機擷取的範圍        var codeStr = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789";        //0-61索引,我只需要隨機產生4個索引,然後通過charAt就可以擷取到字元了        var oDiv = document.getElementById(‘code‘);        //擷取隨機數        function getRandom(n,m){            n = Number(n);            m = Number(m);            if(isNaN(n) || isNaN(m)){                return Math.random()            }            if(n>m){                var temp = n;                n = m;                m = temp            }            return Math.round(Math.random()*(m-n)+n)        }        //擷取驗證碼        function getCode(){            var str = ""            for(var i = 0;i<4;i++){                var ran = getRandom(0,61)                str +=codeStr.charAt(ran);            }            oDiv.innerHTML = str;        }        getCode();        oDiv.onclick = function(){            getCode();        }    </script></body></html>

 

js學習總結----字串和Math綜合應用-驗證碼(4位)

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.