這次帶給大家使用JS實作表單驗證(附程式碼),使用JS實作表單驗證的注意事項有哪些,以下就是實戰案例,一起來看一下。
<!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> 表单验证</title> <style type="text/css"> <!-- body,td,th { font-size: 12px; color: #000000; } body { background-color: #CCCCCC; margin-left: 0px; margin-top: 0px; } a { font-size: 12px; color: #666600; } a:link { text-decoration: none; } a:visited { text-decoration: none; color: #000099; } a:hover { text-decoration: underline; color: #6633FF; } a:active { text-decoration: none; color: #00FF00; } --> </style> <script type="text/javascript"> function checkusername() { var myform = document.getElementById("form1"); var username = myform.username.value.length; if(username < 1||username>12) { errusername.innerHTML = "<font color='red'>用户名不符合要求</font>"; return false; }else{ errusername.innerHTML = "<font color='green'>用户名符合要求</font>"; return true; } } function checkage() { var myform = document.getElementById("form1"); var age = myform.age.value; if(age != parseInt(age)) { errage.innerHTML = "<font color='red'>年龄不符合要求</font>"; return false; }else{ errage.innerHTML = "<font color='green'>年龄符合要求</font>"; return true; } } function checkemail() { var myform = document.getElementById("form1"); var mail=/^[A-Za-z0-9_-]+@[a-zA-Z0-9_-]+(\.[a-zA-Z0-9_-]+)+$/; if(!mail.test(myform.email.value)) { erremail.innerHTML = "<font color='red'>email不符合要求</font>"; return false; }else{ erremail.innerHTML = "<font color='green'>email符合要求</font>"; return true; } } function checkform() { checkusername();checkage();checkemail(); if(checkusername()&&checkage()&&checkemail()) { return true; }else{ return false; } } </script> </head> <body alink="center"> <form id="form1" name="form1" method="post" action="ttt.jsp" onsubmit="return checkform()"> <table width="777" border="0" cellpadding="1" cellspacing="1"> <tr> <td colspan="3" ><p align="center">请输入你的注册信息</p></td> </tr> <tr> <td width="250" ><p align="right" >请输入你的用户名:</p></td> <td width="250"><p align="center"> <input type="text" name="username" onblur="checkusername()" /> </p></td> <td><p id="errusername" align="center"></p></td> </tr> <tr> <td width="250"><p align="right">请输入你的年龄:</p></td> <td width="250"><p align="center" > <label> <input type="text" name="age" onblur="checkage()"/> </label> </p></td> <td><p align="center" id="errage"></p></td> </tr> <tr> <td width="250"><p align="right" >请输入你的EMAIL:</p></td> <td width="250"><p align="center" > <label> <input type="text" name="email" onblur="checkemail()" /> </label> </p></td> <td><p align="center" id="erremail"></p></td> </tr> <tr> <td><p align="right"> <label> <input type="submit" name="Submit" value="提交" /> </label> </p></td> <td><p align="center"> <label> <input type="reset" name="Submit2" value="重置" /> </label> </p></td> <td><p align="center"></p></td> </tr> </table> </form> </body> </html>
我相信看了本文案例你已經掌握了方法,更多精彩請關注php中文網其它相關文章!
推薦閱讀:
以上是使用JS實現表單驗證(附程式碼)的詳細內容。更多資訊請關注PHP中文網其他相關文章!