|
|
|
คือผมทำหน้าร้องเรียนข้อมูลอ่าครับ แล้วติดปัญหาที่ว่า จะเอาfunction เชคบัตรประชาชนไปใส่ไว้ยังไงอ่าครับ ช่วยแนะนำทีนะครับ |
|
|
|
|
|
|
|
ช่วยแนะนำผมทีนะครับ งงไปหมดและ ยิ่งไม่ถนัดภาษา JAVA อยู่ด้วย
|
|
|
|
|
Date :
2012-06-13 16:52:04 |
By :
cit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ตรวจสอบเลขบัตร
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>thaicreate.com</title>
<style type="text/css">
<!--
body {
margin-left: 0px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
}
-->
</style></head>
<script language="javascript">
function checkID(id) {
if(id.length != 13) return false;
for(i=0, sum=0; i < 12; i++)
sum += parseFloat(id.charAt(i))*(13-i);
if((11-sum%11)%10!=parseFloat(id.charAt(12))) return false;
return true;
}
function checkForm() {
if(!checkID(document.form1.txtID.value))
alert('ผมรู้นะ...ว่าคุณมั่ว');
else
alert('ถูกต้องงงงงง');
}
</script>
<body>
<form name="form1" onsubmit="checkForm(); return false;">
เลขบัตรประชาชน : <input type="text" name="txtID" />
<input type="submit" value="ตรวจสอบ" />
</form>
</body>
</html>
|
|
|
|
|
Date :
2012-06-13 17:08:06 |
By :
DiiGO |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Code (JavaScript)
function chkdata()
{
if(document.form1.name.value == "")
{
alert('กรุณากรอกชื่อ - นามสกุล');
document.form1.name.focus();
return false;
}
if(document.form1.id_human.value == "")
{
alert('กรุณากรอกเลขบัตรประจำตัวประชาชน');
document.form1.id_human.focus();
return false;
}
if(document.form1.address.value == "")
{
alert('กรุณากรอกที่อยู่');
document.form1.address.focus();
return false;
}
if(document.form1.detail.value == "")
{
alert('กรุณากรอกรายละเอียดข้อร้องเรียน');
document.form1.detail.focus();
return false;
}
if(document.form1.tel.value == "")
{
alert('กรุณากรอกหมายเลขโทรศัพท์');
document.form1.tel.focus();
return false;
}
if(document.form1.capchar.value == "")
{
alert('กรุณากรอกรหัสยืนยัน');
document.form1.capchar.focus();
return false;
}
document.form1.submit();
}
คือว่า โค๊ด js ผมเป็นแบบนี้อ่าครับ
แล้วผมจะเอาโค๊ด --> ไปใส่ตรงไหนได้อ่าครับ เพื่อให้โค๊ดทั้งหมดทำงานได้อ่าครับ
<script language="javascript">
function checkID(id) {
if(id.length != 13) return false;
for(i=0, sum=0; i < 12; i++)
sum += parseFloat(id.charAt(i))*(13-i);
if((11-sum%11)%10!=parseFloat(id.charAt(12))) return false;
return true;
}
function checkForm() {
if(!checkID(document.form1.txtID.value))
alert('ผมรู้นะ...ว่าคุณมั่ว');
else
alert('ถูกต้องงงงงง');
}
</script>
|
|
|
|
|
Date :
2012-06-13 20:09:40 |
By :
cit |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|