您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
这篇文章主要讲解了“怎么用JavaScrip正则表达式验证form表单”,文中的讲解内容简单清晰,易于学习与理解,下面请大家跟着小编的思路慢慢深入,一起来研究和学习“怎么用JavaScrip正则表达式验证form表单”吧!
document:标签之间
location:url
history:前进后退
<html> <head> <script type="text/javascript"> function show() { //弹出一个提示框 window.alert("hh"); } //将show方法绑定到按钮上 window.onload=function() { //定位到按钮 var buttonElement=document.forms[0].mybtn; //动态绑定show方法 buttonElement.onclick=show; //show如果加()则一加载网页就弹出提示框 } function validateForm() { var loginform=document.forms[1]; var username=trim(loginform.username.value); var password=trim(loginform.password.value); var email=trim(loginform.email.value); // alert("替代前长度:"+username.length); // username=trim(username); // alert("替代后长度:"+username.length); //判断用户名必填: if(username.length==0) { alert("用户必填"); } else if(!/^[a-zA-Z0-9]+$/.test(username)) { alert("用户名必须是英文字母"); } else if(password.length==0) { alert("密码必填"); } else if(!/^[0-9]{6}$/.test(password)) { alert("密码必须为6位数字"); } else if(email.length==0) { alert("邮箱必填"); } else if(!/^\w+@\w+(\.\w+)+$/.test(email)) { alert("邮箱格式不正确"); } return false; } //自定义一个去空格的参数 function trim(s) { //s.REPLACE(正则表达式,替换的字符) s=s.replace(/^\s*$/,""); return s; } </script> <style type="text/css"> .myclass{ position: absolute; left: 400px; top: 150px; } </style> </head> <body> <div class="myclass"> <form action="#" name="myform" method="post"> <input type="button" value="单机" name="mybtn"/> </form> </div> <!--登录页面的表单--> <form action="#" name="loginform" method="post" onsubmit="return validateForm()"> <table border="1" align="center"> <caption>基于js的验证</caption> <tr> <th>用户名:</th> <td><input type="text" name="username"/></td> </tr> <tr> <th>密码:</th> <td><input type="password" name="password"/></td> </tr> <tr> <th>邮箱:</th> <td><input type="text" name="email"/></td> </tr> <tr> <td align="center" colspan="2"> <input type="submit" value="提交" /> </td> </tr> </table> </form> </body> </html>
感谢各位的阅读,以上就是“怎么用JavaScrip正则表达式验证form表单”的内容了,经过本文的学习后,相信大家对怎么用JavaScrip正则表达式验证form表单这一问题有了更深刻的体会,具体使用情况还需要大家实践验证。这里是亿速云,小编将为大家推送更多相关知识点的文章,欢迎关注!
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。