button 按钮,结合onclick事件,验证和提交表单

Posted yangzailu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了button 按钮,结合onclick事件,验证和提交表单相关的知识,希望对你有一定的参考价值。

<!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>
  <title> new document </title>
  <meta http-equiv="Content-Type" content="text/html;charset=UTF-8" />
  <style type="text/css"></style>
  <script type="text/javascript">
  //button 按钮,结合onclick事件,验证和提交表单
  function checkForm(){
        //判断用户名是否为空
        if(document.form1.username.value==""){
                window.alert("用户名不能为空");
        }else if(document.form1.username.value.length<5 || document.form1.username.value.length>20){
            window.alert("用户名长度必须介于5-50个字符之间!");
        }else{
            //使用form对象的submit()方法,实现提交。
            document.form1.submit();        
        }
  }
 </script>
 </head>
 <body>
  <form name="form1" method="get" action="login.php">
  用户名:<input type="text" name="username" />
  密码:<input type="password" name="userpwd" />
  <input type="button" value="提交表单" onclick="checkForm()" />
  </form>
 </body>
</html>

 

以上是关于button 按钮,结合onclick事件,验证和提交表单的主要内容,如果未能解决你的问题,请参考以下文章

JavaScript基础 submit按钮结合onclick事件 实现表单的提交与验证

我的button按钮的onclick事件调用JS里的方法怎么不触发

js 动态添加的按钮 onclick事件怎么写?

js动态给按钮增加onclick的函数事件(带参数)

php怎么给按钮添加事件

button按钮如何在onclick中调用java后台函数