欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java后台开发之表单提交之前验证

程序员文章站 2024-03-07 10:59:45
废话不多说了,具体代码如下所示: <%@ page language="java" contenttype="text/html; charset=ut...

废话不多说了,具体代码如下所示:

<%@ page language="java" contenttype="text/html; charset=utf-8" 
  pageencoding="utf-8"%> 
<%@ page import="java.util.*" %> 
<%@ page import="java.sql.*" %> 
<!doctype html public "-//w3c//dtd html 4.01 transitional//en" "http://www.w3.org/tr/html4/loose.dtd"> 
<html> 
  <head> 
    <meta http-equiv="content-type" content="text/html; charset=utf-8"> 
    <title>表单提交</title> 
  </head> 
  <body> 
    <p align="center"><b>表单提交</b><br></p> 
    <center> 
      <div align="left"> 
        <table height="60" border="0" align="left"> 
          <tr> 
            <td> 
              <form name="channelform" action="addchannel.jsp" 
               onsubmit="return validate_channel_info(this);" method="post"> 
                名字:  
                <input type="text" name="channelname" /> 
                <br /> 
                id:  
                <input type="text" name="channelid" /> 
                <br /> 
                <input type="submit" value="提交">                  
              </form> 
            </td> 
          </tr> 
        </table>        
         
        <script type="text/javascript"> 
          function validate_channel_info(channelform) 
          { 
            if(channelform.channelname.value=="") 
            { 
              alert("请输入正确的名字"); 
              return false; 
            } 
            else if(!isnumber(channelform.channelid.value)) 
            { 
              alert("请输入合法id"); 
              return false; 
            } 
            return true; 
          }  
          function isnumber(str)     // 判断是否为非负整数 
          { 
            var rx = /^[0-9]+$/; 
            return rx.test(str); 
          } 
        </script> 
      </div> 
    </center> 
  </body> 
</html> 

以上所述是小编给大家介绍的java后台开发之表单提交之前验证,希望对大家有所帮助