<input name="id_card_txt" type="text" id="id_card_txt" onKeyPress="if (event.keyCode < 48 || event.keyCode > 57 ){event.returnValue = false;}" maxlength="13"> <input type="submit" name="Submit" value="Check id card" onClick="id_card(document.getElementById('id_card_txt'))"> <script> function check_idcard(idcard){ if(idcard.value == ""){ return false;} if(idcard.length < 13){ return false;} var num = str_split(idcard); // function เพิ่มเติม var sum = 0; var total = 0; var digi = 13; for(i=0;i<12;i++){ sum = sum + (num[i] * digi); digi--; } total = ((11 - (sum % 11)) % 10); if(total == num[12]){ // alert('รหัสหมายเลขประจำตัวประชาชนถูกต้อง'); return true; }else{ // alert('รหัสหมายเลขประจำตัวประชาชนไม่ถูกต้อง'); return false; } } function str_split ( f_string, f_split_length){ f_string += ''; if (f_split_length == undefined) { f_split_length = 1; } if(f_split_length > 0){ var result = []; while(f_string.length > f_split_length) { result[result.length] = f_string.substring(0, f_split_length); f_string = f_string.substring(f_split_length); } result[result.length] = f_string; return result; } return false; } function id_card(id){ if(check_idcard(id.value)){ alert("ID Card Completed."); }else{ alert("ID Card Error ?\nPlease Tye Again"); id.value = ""; id.focus(); } } </script>
<java script> function chknull() { if (document.form1.txt1.values='') { alert ('กรุณากรอกช่องว่าง'); document.form1.txt1.focus(); return false; }else if (document.form1.txt2.values='') { alert ('กรุณากรอกชื่อด้วยครับผม'); document.form1.txt1.focus(); return false; } } </java script>
<script type="text/javascript"> $(document).ready(function(){ $("#txtIdCard").mask("9-9999-99999-99-9"); //$("#txtPhoneNumber").mask("999-9999-999"); }) </script>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง