tt.asp
上传用户:hnxqingdao
上传日期:2013-05-22
资源大小:1283k
文件大小:1k
源码类别:

其他行业

开发平台:

ASP/ASPX

  1. <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
  2. <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
  3. <html>
  4. <head>
  5. <meta http-equiv="Content-Type" content="text/html; charset=gb2312">
  6. <title>无标题文档</title>
  7. </head>
  8. <script language="javascript">
  9.    function wy(form)
  10.       {var t=form.t1.value;
  11.       
  12.       var check="1234567890";
  13.       
  14.       var tlen=t.length;
  15.       
  16.       var j=1;
  17.       
  18.       for(var i=0;i<tlen;i++)
  19.       {
  20.           if(check.indexOf(t.charAt(i))==-1)
  21.             {
  22.                j=0;
  23.                break;
  24.              }    
  25.        }
  26.       
  27.          if(j==0)
  28.          {
  29.             alert("text1 is must number");
  30.             return false;
  31.           }
  32.           else
  33.           {
  34.           return true;
  35.           }
  36.    }
  37.    
  38. </script>
  39. <body>
  40. <form name="form1" method="post" action="#" onsubmit="return wy(this)">
  41. <input type="text" name="t1">
  42. <input type="text" name="t2">
  43. <input type="submit" name="Submit" value="提交">
  44. </form>
  45. </body>
  46. </html>