圖形驗證碼的兩種實現方式


情形一:圖形驗證碼跟短信驗證碼一起,只需要將后台提供的動態鏈接填到(id="img")的src中即可生成動態驗證碼。

然后,在需要請求接口的地方,只需把(id="imgCode")中用戶輸入的信息通過ajax傳給后台,驗證驗證碼是否正確。

原理(后台):后台通過session存儲圖片上的字符串,和之后前台請求過來的帶的輸入的字符串參數,做比較,判斷是否一樣。

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>圖形驗證碼</title>
</head>
<body>
    <form>
        <div class="imgCodeBox">
            <label for="imgCode">圖形驗證碼</label>
            <input type="text" placeholder="請輸入驗證碼" id="imgCode">
            <img src="" id="img"> 
        </div>
    </form>
</body>
</html>

情形二:用cavas,但是沒有安全性,考慮到實用性的話,還是用情形一的好

<!doctype html>
<html>
<head>
    <meta charset="UTF-8">
    <title>測試</title>
</head>
<body>
    <canvas id="canvas" width="120" height="40"></canvas>
    <a href="#" id="changeImg">看不清,換一張</a>
    <script>
        /**生成一個隨機數**/
        function randomNum(min,max){
            return Math.floor( Math.random()*(max-min)+min);
        }
        /**生成一個隨機色**/
        function randomColor(min,max){
            var r = randomNum(min,max);
            var g = randomNum(min,max);
            var b = randomNum(min,max);
            return "rgb("+r+","+g+","+b+")";
        }
        drawPic();
        document.getElementById("changeImg").onclick = function(e){
            e.preventDefault();
            drawPic();
        }

        /**繪制驗證碼圖片**/
        function drawPic(){
            var canvas=document.getElementById("canvas");
            var width=canvas.width;
            var height=canvas.height;
            var ctx = canvas.getContext('2d');
            ctx.textBaseline = 'bottom';

            /**繪制背景色**/
            ctx.fillStyle = randomColor(180,240); //顏色若太深可能導致看不清
            ctx.fillRect(0,0,width,height);
            /**繪制文字**/
            var str = 'ABCEFGHJKLMNPQRSTWXY123456789';
            for(var i=0; i<4; i++){
                var txt = str[randomNum(0,str.length)];
                ctx.fillStyle = randomColor(50,160);  //隨機生成字體顏色
                ctx.font = randomNum(15,40)+'px SimHei'; //隨機生成字體大小
                var x = 10+i*25;
                var y = randomNum(25,45);
                var deg = randomNum(-45, 45);
                //修改坐標原點和旋轉角度
                ctx.translate(x,y);
                ctx.rotate(deg*Math.PI/180);
                ctx.fillText(txt, 0,0);
                //恢復坐標原點和旋轉角度
                ctx.rotate(-deg*Math.PI/180);
                ctx.translate(-x,-y);
            }
            /**繪制干擾線**/
            for(var i=0; i<8; i++){
                ctx.strokeStyle = randomColor(40,180);
                ctx.beginPath();
                ctx.moveTo( randomNum(0,width), randomNum(0,height) );
                ctx.lineTo( randomNum(0,width), randomNum(0,height) );
                ctx.stroke();
            }
            /**繪制干擾點**/
            for(var i=0; i<100; i++){
                ctx.fillStyle = randomColor(0,255);
                ctx.beginPath();
                ctx.arc(randomNum(0,width),randomNum(0,height), 1, 0, 2*Math.PI);
                ctx.fill();
            }
        }
    </script>
</body>
</html>

情形二轉自:https://blog.csdn.net/meishuixingdeququ/article/details/52386542

情形三、用js產生隨機數實現

1、創建圖形碼容器

<label class="myLabel">圖形碼:
    <input type = "button" id="code" onclick="createCode()" style="border: 0;background-color: transparent;padding: 0;"/>
</
label>

2、產生驗證碼並在頁面加載時和點擊時調用

    // 圖形驗證碼
        var code ; //在全局定義驗證碼
        //產生驗證碼
        window.onload = function createCode(){
            code = "";
            var codeLength = 4;//驗證碼的長度
            var checkCode = document.getElementById("code");
            var random = new Array(0,1,2,3,4,5,6,7,8,9,'A','B','C','D','E','F','G','H','I','J','K','L','M','N','O','P','Q','R',
                'S','T','U','V','W','X','Y','Z');//隨機數
            for(var i = 0; i < codeLength; i++) {//循環操作
                var index = Math.floor(Math.random()*36);//取得隨機數的索引(0~35)
                code += random[index];//根據索引取得隨機數加到code上
            }
            checkCode.value = code;//把code值賦給驗證碼
        }

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM