document.write("
"); document.write("
"); document.write("重取認證碼"); document.write(""); function ChangeloginImageCode(){ var StringCode="abcdefhjkmnprstuvwxyz2345678"; authcode=""; //for(i=0;i<6;i++){ for(i=0;i<4+Math.floor(Math.random() * 3);i++){ authcode+=""+StringCode.charAt(Math.floor(Math.random() * StringCode.length)); } document.getElementById('loginauthcode').value=authcode; document.getElementById('loginauthimg').src="./inc/Chart.php?authcode="+authcode; } function CheckloginAuth(){ return document.getElementById('loginauthcode').value==document.getElementById('inputloginauthcode').value.toLowerCase(); }