<?php function isNumberKey(evt) { var charCode = (evt.which) ? evt.which : event.keyCode if (charCode > 31 && (charCode < 48 || charCode > 57)) { return false; }else{ return true; } } ?>
<?php <html> <head> <script type="text/javascript"> function validate() { var fname=document.getElementById("fname").value; if (fname.length==1) { if (fname=="0") { alert("false"); }else{ alert("true"); } } </script> </head> <body> <form action="tryjs_submitpage.htm" onsubmit="return validate()"> <input type="text" id="fname" size="20"><br /> <br /> <input type="submit" value="Submit"> </form> </body> ได้มั้ยครับ ?>
<script language="javascript"> function CheckLength() { MessageLength = document.forms[0].text.value.length; message = ""; if(MessageLength==1){ alert(message + " ข้อความของคุณถูกต้องคือ มี " + MessageLength + " ตัวอักษร."); } else alert(message + " กรุณาตรวจสอบข้อมูล "); } </script> <FORM> <input type="text" name="text" id="text" /> <a href="javascript:CheckLength()">ตรวจสอบความยาวข้อความ</a> </FORM>
<html> <head> <title>ThaiCreate.Com Tutorial</title> </head> <body> <form name="frmMain" action="" method="post" OnSubmit="return chkSubmit();"> <script language="JavaScript"> function chkSubmit() { if(isNaN(document.frmMain.txtNumber.value)) { alert('Please input Number only.'); return false; } } </script> Input Number <input type="text" name="txtNumber" value=""> <input type="submit" name="btnSubmit" value="Submit"> </form> </body> </html>
<html> <head> <title>ThaiCreate.Com Tutorial</title> </head> <body> <form name="frmMain" action="" method="post" OnSubmit="return chkString();"> <script language="JavaScript"> function chkString() { if(document.frmMain.txtString.value.length < 4 || document.frmMain.txtString.value.length > 10) { alert('Please input String [4-10 Character] .'); return false; } } </script> Input String [4-10 Character] <input type="text" name="txtString" value=""> <input type="submit" name="btnSubmit" value="Submit"> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง