<script type="text/javascript"> function check_empty() { if(document.getElementById('txtUsername').value == "") { document.getElementById("print_username").innerhtml = "Please enter username"; } if(document.getElementById('txtPassword').value == "") { document.getElementById("print_password").innerhtml = "Please enter password"; } } </script> <body> <form name="form1" method="post" onSubmit="check_empty();" > <div>Username <input type="text" id="txtUsername" name="txtUsername"></div> <div><p id="print_username"></p></div> <div>Password <input type="text" id="txtPassword" name="txtPassword"></div> <div ><p id="print_password"></p></div> <div><input type="submit" ></div> </form> </body>
<body> <p id="demo"></p> <script> document.getElementById("demo").innerHTML = "Hello Dolly."; function check_empty() { //alert(document.getElementById("txtUsername")); if(document.getElementById("txtUsername").value == "") { document.getElementById("print_username").innerHTML = "Please enter username"; alert("2222"); return true; } return false; } </script> <form name="form1" method="post" onSubmit="return check_empty();" > <div>Username <input type="text" id="txtUsername" name="txtUsername"></div> <div><p id="print_username"></p></div> <div>Password <input type="text" id="txtPassword" name="txtPassword"></div> <div ><p id="print_password"></p></div> <div><input type="submit" ></div> </form> </body>
<!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=utf-8" /> <title>Untitled Document</title> <script type="text/javascript"> function validate(){ var username=document.form1.name.value; var password=document.form1.name.value; var status=false; if(name==null||name==""){ document.getElementById("namelocation").innerHTML="Please enter your name"; status=false; } if(password==null||password==""){ document.getElementById("passwordlocation").innerHTML= "Please enter your password!!"; status=false; } else{ status=true; } } </script> </head> <body> <form name="form1" method="POST" onsubmit="return validate()"> <table> <tr><td>Name:</td><td><input type="text" name="username" id="usernaem"/> <span id="namelocation" style="color:red"></span></td></tr> <tr><td>Password:</td><td><input type="password" name="password" id="password"/> <span id="passwordlocation" style="color:red"></span></td></tr> <tr><td colspan="2"><input type="submit" value="Login"/> </td></tr> </table> </form> </body> </html>
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง