1:HTML:
<input type="text" name="verify" required lay-verify="required" class="layui-input layui-input-inline" value="" class="input-val">
<canvas id="canvas" width="100" height="43" ></canvas>
<input type="hidden" name="show" value=""/>
2js驗(yàn)證:
<script src="{{ URL::asset('js/jquery.min.js') }}"></script>
? ? $(function(){
var show_num = [];
? ? ? ? draw(show_num);
? ? ? ? $("input[name='show']").val(show_num);
? ? ? ? $("#canvas").on('click',function(){
draw(show_num);
? ? ? ? ? ? $("input[name='show']").val(show_num);
? ? ? ? })
// $(".btn").on('click',function(){
//
// })
? ? })
function draw(show_num) {
var canvas_width=$('#canvas').width();
? ? ? ? var canvas_height=$('#canvas').height();
? ? ? ? var canvas = document.getElementById("canvas");//獲取到canvas的對(duì)象锦爵,演員
? ? ? ? var context = canvas.getContext("2d");//獲取到canvas畫圖的環(huán)境夜只,演員表演的舞臺(tái)
? ? ? ? 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,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 <=3; i++) {
var j = Math.floor(Math.random() * aLength);//獲取到隨機(jī)的索引值
? ? ? ? ? ? var deg = Math.random() *30 * Math.PI /180;//產(chǎn)生0~30之間的隨機(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 23px 微軟雅黑";
? ? ? ? ? ? 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 <=30; i++) {//驗(yàn)證碼上顯示小點(diǎn)
? ? ? ? ? ? context.strokeStyle =randomColor();
? ? ? ? ? ? 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 +")";
? ? }
3:js提交
? ? function login() {
var val=$("input[name='verify']").val().toLowerCase();
? ? ? ? var show=$("input[name='show']").val();
? ? ? ? var num=show.replace(/,/g, "");//去除所有逗號(hào)
? ? ? ? if(val==''){
layer.msg('請(qǐng)輸入驗(yàn)證碼!');
? ? ? ? ? ? return false;
? ? ? ? }else if(val != num){
layer.msg('驗(yàn)證碼錯(cuò)誤处铛!請(qǐng)重新輸入!');
? ? ? ? ? ? return false;
? ? ? ? }
var user=$("input[name='user']").val();
? ? ? ? var tpwd=$("input[name='tpwd']").val();
? ? ? ? var token=$("input[name='_token']").val();
? ? ? ? var url="/admin_login";
? ? ? ? $.ajax({
url:url,
? ? ? ? ? ? dataType:'json',
? ? ? ? ? ? type:'post',
? ? ? ? ? ? data: {'user':user,'tpwd':tpwd,"_token":token},
? ? ? ? ? ? async:false,
? ? ? ? ? ? success:function (info) {
if (info.code ===1) {
setTimeout(function () {
location.href ="/third_apply_list";
? ? ? ? ? ? ? ? ? ? }, 1000);
? ? ? ? ? ? ? ? }
layer.msg(info.msg);
? ? ? ? ? ? },error:function (e) {
//console.log(e.status)
? ? ? ? ? ? }
});
? ? }
//? })