if (document.all.textpassword.value = document.all.textpassword2.value) { alert("Username และ Password ไม่ตรงกัน"); document.all.textpassword2.select(); return false; }
if (document.all.textpassword.value != document.all.textpassword2.value) { alert("Password ไม่ตรงกัน"); document.all.textpassword2.focus(); return false; }
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>registor</title> <script language="javascript" src="jquery-1.2.6.min.js"></script> <script type="text/javascript"> <!-- Begin function check_data() { var eng = /^([a-zA-Z])+$/; var number = /^([0-9])+$/; if (document.all.textname.value == "") { alert("กรุณาใส่ ชื่อ"); document.all.textname.select(); return false; } if (document.all.textaddress.value == "") { alert("กรุณาใส่ ที่อยู่"); document.all.textaddress.select(); return false; } if (document.all.textnumbercard.value == "") { alert("กรุณาใส่ เลขที่บัตรประชาชน"); document.all.textnumbercard.select(); return false; } if (document.all.textnameshop.value == "") { alert("กรุณาใส่ ชื่อร้าน"); document.all.textnameshop.select(); return false; } if (document.all.textphon.value == "") { alert("กรุณาใส่ เบอร์โทรศัพท์"); document.all.textphon.select(); return false; } if (document.all.textemail.value == "") { alert("กรุณาใส่ E-mail"); document.all.textemail.select(); return false; } if (document.all.textusername.value == "") { alert("กรุณาใส่ Username"); document.all.textusername.select(); return false; } if (document.all.textpassword.value == "") { alert("กรุณาใส่ Password"); document.all.textpassword.select(); return false; } if (document.all.textpassword2.value == "") { alert("กรุณายืนยัน Password อีกครั้ง"); document.all.textpassword2.select(); return false; } if (document.all.textpassword.value ! = document.all.textpassword2.value) { alert("Password ไม่ตรงกัน"); document.all.textpassword2.focus(); return false; } if (document.all.textyoulike.value == "") { alert("กรุณาตอบคำถาม 1 อย่าง สำหรับลืม Password"); document.all.textyoulike.select(); return false; } if (!(eng.test(document.all.textusername.value))) { alert("Username กรุณากรอกเป็นภาษาอังกฤษด้วย"); document.all.textusername.select(); return false; } if (!(number.test(document.all.textpassword.value))) { alert("Password กรุณากรอกเป็นตัวเลข"); document.all.textpassword.select(); return false; } } </head> </script> </head> <body> <a href="serach.php" style="text-decoration:none"><font color="#0033FF">หน้าแรก</font></a> <DIV ID="mydiv" STYLE="position:absolute; left:90; top:15; width:100;"> <a href="registorCus.php" style="text-decoration:none"><font color="#0033FF">สมัครสมาชิก</font></a> </DIV> <DIV ID="mydiv" STYLE="position:absolute; left:200; top:15; width:200;"> <font color="#0033FF">ติดต่อเรา</font> </DIV> <DIV ID="mydiv" STYLE="position:absolute; left:290; top:15; width:100;"> <a href="update_Order.php" style="text-decoration:none"><font color="#0033FF">ต่ออายุสมาชิก</font></a> </DIV> <DIV ID="mydiv" STYLE="position:absolute; left:410; top:15; width:200;"> <font color="#0033FF">เข้าสู่ระบบ</font> </DIV><br> <DIV ID="mydiv" STYLE="position:absolute; left:40; top:65; width:200;"> <font size="4" color="#666666"><b>ลงทะเบียนสมาชิก</b></font> <br> <br> <font color="#FF0000">ฟรี 1 เดือนแรก</font> <form name="frmMainADD" method="post" action="saveRegistor.php" onSubmit="JavaScript:return check_data();"> <input type="hidden" name="txtfree" value="free"> <table bgcolor="#CCCCCC" bordercolor="#D8D8D8" width="320" height="0" border="0" cellpadding="1" cellspacing="0"> <tr height="40"><td align="right"> ชื่อ /นามสกุุล</td><td><input type="text" name="txtname" id="textname" value=""></td></tr> <tr height="40"><td align="right">ที่อยู่ </td><td><input type="text" name="txtaddress" id="textaddress" value=""></td></tr> <tr height="40"><td align="right">เลขที่บัตรประชาชน</td><td><input type="text" name="txtnumbercard" id="textnumbercard"value=""></td></tr> <tr height="40"><td align="right">ชื่อร้านค้า</td><td><input type="text" name="txtnameshop" id="textnameshop" value=""></td></tr> <tr height="40"><td align="right">โทรศัพท์ </td><td><input type="text" name="txtphon" id="textphon" value=""></td></tr> <tr height="40"><td align="right">E-mail </td><td><input type="text" name="txtemail" id="textemail" value=""></td></tr> <tr height="40"><td align="right">Username </td><td><input type="text" name="txtusername" id="textusername" value=""></td></tr> <tr height="40"><td align="right">Password </td><td><input type="text" name="txtpassword" id="textpassword" value=""></td></tr> <tr height="40"><td align="right">ยืนยัน Password </td><td><input type="text" name="txtpassword2" id="textpassword2" value=""></td></tr> <tr height="40"><td align="right">สิ่งที่ชอบ</td> <td><font size="2" color="#FF0000">คำตอบสำหรับลืมPassword</font><br><input type="text" name="txtyoulike" id="textyoulike" value=""></td></tr> <tr height="40"><td> </td><td align="left"><input type="submit" name="submit" value="ยืนยัน"></td></tr> </table> </form> </div> </body> </html>
<html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>registor</title> <script language="javascript" src="jquery-1.2.6.min.js"></script> <script type="text/javascript"> <!-- Begin function check_data() { var eng = /^([a-zA-Z])+$/; var number = /^([0-9])+$/; if (document.all.textname.value == "") { alert("กรุณาใส่ ชื่อ"); document.all.textname.select(); return false; } if (document.all.textaddress.value == "") { alert("กรุณาใส่ ที่อยู่"); document.all.textaddress.select(); return false; } if (document.all.textnumbercard.value == "") { alert("กรุณาใส่ เลขที่บัตรประชาชน"); document.all.textnumbercard.select(); return false; } if (document.all.textnameshop.value == "") { alert("กรุณาใส่ ชื่อร้าน"); document.all.textnameshop.select(); return false; } if (document.all.textphon.value == "") { alert("กรุณาใส่ เบอร์โทรศัพท์"); document.all.textphon.select(); return false; } if (document.all.textemail.value == "") { alert("กรุณาใส่ E-mail"); document.all.textemail.select(); return false; } if (document.all.textusername.value == "") { alert("กรุณาใส่ Username"); document.all.textusername.select(); return false; } if (document.all.textpassword.value == "") { alert("กรุณาใส่ Password"); document.all.textpassword.select(); return false; } if (document.all.textpassword2.value == "") { alert("กรุณายืนยัน Password อีกครั้ง"); document.all.textpassword2.select(); return false; } if (document.all.textpassword.value != document.all.textpassword2.value) { alert("Password ไม่ตรงกัน"); document.all.textpassword2.select(); return false; } if (document.all.textyoulike.value == "") { alert("กรุณาตอบคำถาม 1 อย่าง สำหรับลืม Password"); document.all.textyoulike.select(); return false; } if (!(eng.test(document.all.textusername.value))) { alert("Username กรุณากรอกเป็นภาษาอังกฤษด้วย"); document.all.textusername.select(); return false; } if (!(number.test(document.all.textpassword.value))) { alert("Password กรุณากรอกเป็นตัวเลข"); document.all.textpassword.select(); return false; } } </script> </head> <body> <a href="serach.php" style="text-decoration:none"><font color="#0033FF">หน้าแรก</font></a> <DIV ID="mydiv" STYLE="position:absolute; left:90; top:15; width:100;"> <a href="registorCus.php" style="text-decoration:none"><font color="#0033FF">สมัครสมาชิก</font></a> </DIV> <DIV ID="mydiv" STYLE="position:absolute; left:200; top:15; width:200;"> <font color="#0033FF">ติดต่อเรา</font> </DIV> <DIV ID="mydiv" STYLE="position:absolute; left:290; top:15; width:100;"> <a href="update_Order.php" style="text-decoration:none"><font color="#0033FF">ต่ออายุสมาชิก</font></a> </DIV> <DIV ID="mydiv" STYLE="position:absolute; left:410; top:15; width:200;"> <font color="#0033FF">เข้าสู่ระบบ</font> </DIV><br> <DIV ID="mydiv" STYLE="position:absolute; left:40; top:65; width:200;"> <font size="4" color="#666666"><b>ลงทะเบียนสมาชิก</b></font> <br> <br> <font color="#FF0000">ฟรี 1 เดือนแรก</font> <form name="frmMainADD" method="post" action="saveRegistor.php" onSubmit="JavaScript:return check_data();"> <input type="hidden" name="txtfree" value="free"> <table bgcolor="#CCCCCC" bordercolor="#D8D8D8" width="320" height="0" border="0" cellpadding="1" cellspacing="0"> <tr height="40"><td align="right"> ชื่อ /นามสกุุล</td><td><input type="text" name="txtname" id="textname" value=""></td></tr> <tr height="40"><td align="right">ที่อยู่ </td><td><input type="text" name="txtaddress" id="textaddress" value=""></td></tr> <tr height="40"><td align="right">เลขที่บัตรประชาชน</td><td><input type="text" name="txtnumbercard" id="textnumbercard"value=""></td></tr> <tr height="40"><td align="right">ชื่อร้านค้า</td><td><input type="text" name="txtnameshop" id="textnameshop" value=""></td></tr> <tr height="40"><td align="right">โทรศัพท์ </td><td><input type="text" name="txtphon" id="textphon" value=""></td></tr> <tr height="40"><td align="right">E-mail </td><td><input type="text" name="txtemail" id="textemail" value=""></td></tr> <tr height="40"><td align="right">Username </td><td><input type="text" name="txtusername" id="textusername" value=""></td></tr> <tr height="40"><td align="right">Password </td><td><input type="text" name="txtpassword" id="textpassword" value=""></td></tr> <tr height="40"><td align="right">ยืนยัน Password </td><td><input type="text" name="txtpassword2" id="textpassword2" value=""></td></tr> <tr height="40"><td align="right">สิ่งที่ชอบ</td> <td><font size="2" color="#FF0000">คำตอบสำหรับลืมPassword</font><br><input type="text" name="txtyoulike" id="textyoulike" value=""></td></tr> <tr height="40"><td> </td><td align="left"><input type="submit" name="submit" value="ยืนยัน"></td></tr> </table> </form> </div> </body> </html> 1. != ของคุณมีเว้นวรรค 2. มี header ตัวนึงอยู่ใน tab javascript
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง