話(huà)不多說(shuō),請(qǐng)看代碼:
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <title>不重復(fù)驗(yàn)證碼</title> <style>  .cont{width:300px;height:auto;margin:50px auto;}    #useId{width:120px;height:45px;line-height:45px;background:#ccc;text-align:center;font-size:20px;margin:10px;} </style></head><body> <div class="cont"> <div id="useId"></div> <input type="text" id="txt" /> <input type="button" id="btn" value="Start" /> <div> <script>    function $(id){     return document.getElementById(id);    }    var $useId = $('useId'),      $txt = $('txt'),      $btn = $('btn');    function getStr(){    var string = 'abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789',      str = '';      while(str.length < 6){     var str1 = string.charAt(Math.round(Math.random() * 56));     if(str.indexOf(str1) === -1){      str += str1;     }    }    $useId.innerHTML = str;    }    function checkCode(){     if($txt.value == $useId.innerHTML){     alert('驗(yàn)證成功');     }else{     alert('驗(yàn)證失敗');     }    }    $useId.onclick = getStr;    $btn.onclick = checkCode; </script></body></html>以上就是本文的全部?jī)?nèi)容,希望本文的內(nèi)容對(duì)大家的學(xué)習(xí)或者工作能帶來(lái)一定的幫助,同時(shí)也希望多多支持武林網(wǎng)!
新聞熱點(diǎn)
疑難解答
圖片精選
網(wǎng)友關(guān)注