App下載

JS如何實(shí)現(xiàn)驗(yàn)證碼?

猿友 2021-03-18 17:40:09 瀏覽數(shù) (3732)
反饋

驗(yàn)證碼常被用來(lái)驗(yàn)證當(dāng)前操作是否由本人來(lái)進(jìn)行。常見(jiàn)的驗(yàn)證碼有短信驗(yàn)證碼,圖文驗(yàn)證碼,字母數(shù)字驗(yàn)證碼等。今天 W3Cschool 小編教你 JS 如何實(shí)現(xiàn)字母數(shù)字驗(yàn)證碼。

我們先來(lái)看下效果:

JS實(shí)現(xiàn)驗(yàn)證碼

JS實(shí)現(xiàn)驗(yàn)證碼

具體代碼:

<!DOCTYPE html>

<html lang="en">

<head>

    <meta charset="UTF-8">

    <title>驗(yàn)證碼 - 編程獅(w3cschool.cn)</title>

    <style>

  .input-val {

  width: 150px;

  height: 30px;

  border: 1px solid #ddd;

  box-sizing: border-box;/*box-sizing 屬性允許你以某種方式定義某些元素,以適應(yīng)指定區(qū)域。*/

  }

  #canvas {

  vertical-align: middle;/*vertical-align屬性設(shè)置一個(gè)元素的垂直對(duì)齊。*/

  box-sizing: border-box;

  border: 1px solid #ddd;

  cursor: pointer;

  }

  .btn {

  display: block;

  margin-top: 10px;

  height: 30px;

  width: 80px;

  font-size: 16px;

  color: #fff;

  background-color: #409EFE;

  border: 1px solid #EBEDEF;

  border-radius: 50px;

  }

 </style>

</head>

<script type="text/javascript" src="https://libs.baidu.com/jquery/2.1.4/jquery.min.js" ></script>

<script>

 $(function(){

  var show_num = [];

  draw(show_num);

  $("#canvas").on('click',function(){

   draw(show_num);

  })

  $(".btn").on('click',function(){

   var val = $(".input-val").val().toLowerCase(); //toLowerCase()函數(shù)將字符串中的所有字符轉(zhuǎn)為小寫(xiě)。所以輸入框不區(qū)分大小寫(xiě)。

   var num = show_num.join("");

   if(val==''){

    alert('請(qǐng)輸入驗(yàn)證碼!');

   }else if(val == num){

    alert('提交成功!');

    $(".input-val").val('');

   }else{

    alert('驗(yàn)證碼錯(cuò)誤!請(qǐng)重新輸入!');

    $(".input-val").val('');

   }

  })

 })

 function draw(show_num) {//生成并渲染出驗(yàn)證碼圖形

  var canvas_width=$('#canvas').width();

  var canvas_height=$('#canvas').height();

  var canvas = document.getElementById("canvas");//獲取canvas

  var context = canvas.getContext("2d");//獲取到canvas畫(huà)圖的環(huán)境

  canvas.width = canvas_width;

  canvas.height = canvas_height;

  var sCode = "A,B,C,E,F,G,H,J,K,L,M,N,P,Q,R,S,T,W,X,Y,Z,a,b,c,d,e,f,g,h,i,j,k,m,n,p,q,r,s,t,u,v,w,x,y,z,1,2,3,4,5,6,7,8,9,0";

  var aCode = sCode.split(",");

  var aLength = aCode.length;//獲取到數(shù)組的長(zhǎng)度

  for (var i = 0; i < 4; i++) { //這里的for循環(huán)可以控制驗(yàn)證碼位數(shù)

   var j = Math.floor(Math.random() * aLength);//獲取到隨機(jī)的索引值

   var deg = Math.random() - 0.5; //產(chǎn)生一個(gè)隨機(jī)弧度

   var txt = aCode[j];//得到隨機(jī)的一個(gè)內(nèi)容

   show_num[i] = txt.toLowerCase();

   var x = 10 + i * 20;//文字在canvas上的x坐標(biāo)

   var y = 20 + Math.random() * 8;//文字在canvas上的y坐標(biāo)

   context.font = "bold 24px 微軟雅黑";

   context.translate(x, y);

   context.rotate(deg);

   context.fillStyle = randomColor();

   context.fillText(txt, 0, 0);

   context.rotate(-deg);

   context.translate(-x, -y);

  }

  for (var i = 0; i <= 5; i++) { //驗(yàn)證碼上顯示線條

   context.strokeStyle = randomColor();

   context.beginPath();

   context.moveTo(Math.random() * canvas_width, Math.random() * canvas_height);

   context.lineTo(Math.random() * canvas_width, Math.random() * canvas_height);

   context.stroke();

  }

  for (var i = 0; i <= 20; i++) { //驗(yàn)證碼上的小點(diǎn)

   context.strokeStyle = randomColor();//隨機(jī)生成

   context.beginPath();

   var x = Math.random() * canvas_width;

   var y = Math.random() * canvas_height;

   context.moveTo(x, y);

   context.lineTo(x + 1, y + 1);

   context.stroke();

  }

 }

 function randomColor() {//得到隨機(jī)的顏色值

  var r = Math.floor(Math.random() * 256);

  var g = Math.floor(Math.random() * 256);

  var b = Math.floor(Math.random() * 256);

  return "rgb(" + r + "," + g + "," + b + ")";

 }

</script>

<body>

    <div class="code">

        <input type="text" value="" placeholder="請(qǐng)輸入驗(yàn)證碼" class="input-val">

        <canvas id="canvas" width="100" height="30"></canvas>

        <button class="btn">驗(yàn)證</button>

    </div>

</body>

</html>

以上就是 JS 如何實(shí)現(xiàn)驗(yàn)證碼的全部?jī)?nèi)容。請(qǐng)同學(xué)們自行練習(xí)鞏固。

0 人點(diǎn)贊