<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> </head> <body> <script language="JavaScript"> function check() { var v1 = document.webform.name.value; if( v1.length ==0) { alert("กรุณาใส่ช่ื่อด้วยค่ะ"); document.webform.name.focus(); return false; } else return true; } </script> <form method="post" action="Save.php" name="webform" onSubmit="return check()"> Name : <input name="name" type="text" id="name" size="25"> <br> Sex : <select name="sex" id="sex"> <option value="0">เลือก</option> <option value="ชาย">ชาย</option> <option value="หญิง">หญิง</option> </select> <br> <input type="submit" name="Submit" value="Submit"> </form> </body> </html>
<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=tis-620"> </head> <body> <script language="JavaScript"> function check() { var v1 = document.webform.name.value; if( v1.length ==0) { alert("กรุณาใส่ช่ื่อด้วยค่ะ"); document.webform.name.focus(); return false; } else return true; } </script> <form method="post" action="Save.php" name="webform" onSubmit="return check()"> Name : <input name="name" type="text" id="name" size="25"> <br> Sex : <select name="sex" id="sex"> <option value="0">เลือก</option> <option value="ชาย">ชาย</option> <option value="หญิง">หญิง</option> </select> <br> <input type="submit" name="Submit" value="Submit" onclick="chk_submit();"> </form> </body> </html> <script language="javascript"> function chk_submit(){ if(document.webform.sex.value=="0"){ alert("กรุณาเลือก"); return false; }else{ return true; } } </script>
Quote:<option value="0">เลือก</option>
<option value="">เลือก</option>
<html> <head> <title>Untitled Document</title> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> </head> <body> <script type="text/javascript"> function check() { var name = document.getElementById('name'); var sex = document.getElementById('sex'); if( name.value == '') { alert("กรุณาใส่ชื่อด้วยค่ะ"); name.focus(); return false; } if( sex.value == 0 ) { alert("เลือกเพศ"); sex.focus(); return false; } } </script> <form method="post" name="webform" action="Save.php" > Name : <input name="name" type="text" id="name" size="25"> <br> Sex : <select name="sex" id="sex"> <option value="0">เลือก</option> <option value="ชาย">ชาย</option> <option value="หญิง">หญิง</option> </select> <br> <input type="submit" name="Submit" value="Submit" onClick="return check();"> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง