您好,登錄后才能下訂單哦!
這篇文章主要介紹基于javascript實(shí)現(xiàn)數(shù)字英文驗(yàn)證碼的方法,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
具體內(nèi)容如下
<html> <head> <style type="text/css"> .code{ background-image:url(111.jpg); font-family:Arial,宋體; font-style:italic; color:green; border:0; padding:2px 3px; letter-spacing:3px; font-weight:bolder; } .unchanged { border:0; } </style> <script language="javascript" type="text/javascript"> var code ; //在全局 定義驗(yàn)證碼 function createCode(){ code = new Array(); var codeLength = 4;//驗(yàn)證碼的長(zhǎng)度 var checkCode = document.getElementById("checkCode"); checkCode.value = ""; var selectChar = new Array(2,3,4,5,6,7,8,9,'A','B','C','D','E','F','G','H','J','K','L','M','N','P','Q','R','S','T','U','V','W','X','Y','Z'); for(var i=0;i<codeLength;i++) { var charIndex = Math.floor(Math.random()*32); code +=selectChar[charIndex]; } if(code.length != codeLength){ createCode(); } checkCode.value = code; } function validate () { var inputCode = document.getElementById("input1").value.toUpperCase(); if(inputCode.length <=0) { alert("請(qǐng)輸入驗(yàn)證碼!"); return false; } else if(inputCode != code ){ alert("驗(yàn)證碼輸入錯(cuò)誤!"); createCode(); return false; } else { alert("成功!"); return true; } } </script> <meta http-equiv="Content-Type" content="text/html; charset=gb2312"></head> <body onLoad="createCode();"> <input type="text" id="input1" /> <input type="button" id="checkCode" class="code" onClick="createCode()" /> <a href="#" onClick="createCode()">看不清楚</a> <input id="Button1" onClick="validate();" type="button" value="確定" /> <script></script> </body> </html>
以上是“基于javascript實(shí)現(xiàn)數(shù)字英文驗(yàn)證碼的方法”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對(duì)大家有幫助,更多相關(guān)知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。