利用javascript生成數字加字母的隨機驗證碼
阿新 • • 發佈:2018-12-11
<!DOCTYPE html> <html> <head> <title>驗證碼</title> <meta charset="utf-8"> <script type="text/javascript"> window.onload=function () { var s="qw9er2ty1uio5pas83dfghj4klz0x6cvb7nm"; var i,w,e;
var a=[]; w=""; a=s.split("");
for(i=0;i<8;i++) { e=Math.floor(Math.random()*35); w=a[e]+w; } document.body.innerText=w; } </script> </head> <body> <h1 >驗證碼</h1> </body> </html>