tt.asp
资源名称:lyxxgl.rar [点击查看]
上传用户:hnxqingdao
上传日期:2013-05-22
资源大小:1283k
文件大小:1k
源码类别:
其他行业
开发平台:
ASP/ASPX
- <%@LANGUAGE="VBSCRIPT" CODEPAGE="936"%>
- <!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=gb2312">
- <title>无标题文档</title>
- </head>
- <script language="javascript">
- function wy(form)
- {var t=form.t1.value;
- var check="1234567890";
- var tlen=t.length;
- var j=1;
- for(var i=0;i<tlen;i++)
- {
- if(check.indexOf(t.charAt(i))==-1)
- {
- j=0;
- break;
- }
- }
- if(j==0)
- {
- alert("text1 is must number");
- return false;
- }
- else
- {
- return true;
- }
- }
- </script>
- <body>
- <form name="form1" method="post" action="#" onsubmit="return wy(this)">
- <input type="text" name="t1">
- <input type="text" name="t2">
- <input type="submit" name="Submit" value="提交">
- </form>
- </body>
- </html>