JavaScript第九讲:JavaScript表单对象

本文详细介绍了JavaScript中处理表单的对象和方法,包括getElementById、forms属性、表单属性如action、method、enctype、title,以及各种事件处理如focus、blur、onchange和onsubmit。通过多个实例演示了如何在表单中设置初始焦点、更改表单提交地址、验证必填字段等操作,帮助读者掌握JavaScript与HTML表单交互的技巧。
摘要由CSDN通过智能技术生成

本节主要讲解JavaScript表单对象,以下是具体详细实例。

 

表单对象:

   document.getElementById();

   document.forms.username

   document.frm1.username

  本身表单的属性,都可以使对象的属性

   action 

   method

   enctype

   title 

   submit()

   focus()//获取焦点时触发的事件

   blur();//失去焦点

   onchange//内容改变触发的事件

 在form上有一个事件onsubmit()

例1

<body  οnlοad="document.getElementById('login-form').username.focus()">

载入页面时登陆页面的username自动获取焦点

 

例2

<body>

  <form name="frm"  action="login.php" method="post">

     username:<input type="text" name="username" value=""><br>

    password:<input type="password" name="password" value=""><br>

    <input  type="submit" name="submit2" value="Login"><br>

</form>

  <h1 οnclick="test()">login h1</h1>

</body>

<script>

function test(){

var frmobj=document.frm;

frmobj.action="index.php";

frmobj.target="_blank";

frmobj.method="get";

frmobj.submit();//调用这个方法就能提交,注意input的名字叫submit不能与内置的submit()方法重。非常容易出错

}

setTiemout("test()",10000);

</script>

 

 

例3  //不能为空

<body>

  <form name="frm"  action="login.php" οnsubmit="return check()" method="post">

       username:<input type="text" name="username" value=""><br>

       password:<input type="password" name="password" value=""><br>

                      <input  type="submit" name="submit2" value="Login"><br>

</form>

</body>

<script>

    function  check(){

       if(document.frm.username.value==''){

       alert('用户名不能为空');

       return false;

     }

    if(document.frm.password.value==""){

      alert('密码不能为空');

     return false;

    }

     return true;

  }

</script>

 

例4  //不能为空后返回获取焦点

<body>

  <form name="frm"  action="login.php" οnsubmit="return check()" method="post">

       username:<input type="text" name="username" value=""><br>

       password:<input type="password" name="password" value=""><br>

                      <input  type="submit" name="submit2" value="Login"><br>

</form>

</body>

<script>

    function  check(){

       var info="";

       var stats=true;

       if(!document.frm.username.value.match(/^\s+$/)){  //正则,不能输入空格

        info+="用户名不能为空!\n";

       // document.frm.username.focus();

        stats=false;

     }

    if(document.frm.password.value==""){

       info+="密码不能为空 \n";

     // document.frm.password.focus();

      stats=false;

    }

   if(!stats)

         alert(info);

     return  stats;

  }

</script>

 

例5

<body>

  <form name="frm"  action="login.php" οnsubmit="return check()" method="post">

       username:<input type="text" name="username" οnblur="one()"  value=""><br>

       password:<input type="password" name="password"  οnblur="two()" value=""><br>

                      <input  type="submit" name="submit2" value="Login"><br>

</form>

</body>

<script>

  function one(){

     if(!document.frm.username.value.match(/^\s+$/)){

       alert("用户名不能为空");

      //document.frm.username.focus();

   }

 }

 

function two(){

   if(!document.frm.password.value==""){

      alert("用户密码不能为空");

     //  document.frm.password.focus();

      }

 }

    function  check(){

       var info="";

       var stats=true;

       if(!document.frm.username.value.match(/^\s+$/)){  //正则,不能输入空格

        info+="用户名不能为空!\n";

       // document.frm.username.focus();

        stats=false;

     }

    if(document.frm.password.value==""){

       info+="密码不能为空 \n";

     // document.frm.password.focus();

      stats=false;

    }

   if(!stats)

         alert(info);

     return  stats;

  }

</script>

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值