test.htm
1<!-- #include file="message.inc" -->
2<HTML>
3<หัว>
4<TITLE> เอกสารใหม่ </TITLE>
5 <meta http-equiv="content-type" content="text/html; charset=shift_jis" />
6 <meta http-equiv="pragma" content="no-cache">
7 <meta http-equiv="cache-control" content="no-cache">
8 <meta http-equiv="หมดอายุ" content="0">
9<script src="common.js"></script>
10<script src="validate.js"></script>
11
12</HEAD>
13
14<ร่างกาย>
15<รูปแบบวิธีการ=โพสต์การดำเนินการ="">
16ID<INPUT TYPE="text" id="txtInt" NAME="txtInt" maxlength="6" feildtype="integer" msg=",<%=IMSG0002%>" ><br>
17ID<INPUT TYPE="text" id="txtInt" NAME="txtInt" maxlength="6" feildtype="integer" msg=",<%=IMSG0002%>" ><br>
18ID<INPUT TYPE="text" id="txtInt" NAME="txtInt" maxlength="6" feildtype="integer" msg=",<%=IMSG0002%>" ><br>
19ID<INPUT TYPE="text" id="txtInt" NAME="txtInt" maxlength="6" feildtype="integer" msg=",<%=IMSG0002%>" ><br>
20
21 <INPUT TYPE="text" id="txtString" NAME="txtString" maxlength="5" feildtype="string" msg="<%=IMSG0003%>,<%=IMSG0004%>" mustitem="true "><br>
22 <INPUT TYPE="text" id="txtString" NAME="txtString" maxlength="5" feildtype="string" msg="<%=IMSG0003%>,<%=IMSG0004%>" mustitem="true "><br>
23 <INPUT TYPE="text" id="txtString" NAME="txtString" maxlength="5" feildtype="string" msg="<%=IMSG0003%>,<%=IMSG0004%>" mustitem="true "><br>
24
25名称2<INPUT TYPE="text" id="txtStr" NAME="txtStr" maxlength="5" feildtype="string" msg="<%=IMSG0003%>,<%=IMSG0004%>" mustitem=" จริง"><br>
26<INPUT TYPE="button" value="submit" onclick="validate(); return false;">
27<ภาษาสคริปต์="จาวาสคริปต์">
28<!--
29//ตรวจสอบ()
30//-->
31</สคริปต์>
32</รูปแบบ>
33</BODY>
34</HTML>
35
ตรวจสอบความถูกต้อง.js
1 ฟังก์ชั่น ตรวจสอบ () {
2
3 //var objs = document.all;
4 //var องค์ประกอบ = document.getElementsByTagName("*");
5 องค์ประกอบ;
6 var ctlArray;
7 คือ ctlArrayName;
8 ฉัน, เจ;
9 โดย เอลเลน, อาร์เลน;
10 ข้อความ;
11
12 องค์ประกอบ = document.getElementsByTagName("อินพุต");
13 arrName ="";
14
15 สำหรับ ( i ในองค์ประกอบ ) {
16 elLen = องค์ประกอบ[i].ความยาว;
17
18 ถ้า (เอลเลน > 1) {
19 ctlArray = องค์ประกอบ[i];
20 arrLen = ctlArray.length;
21
22 ถ้า (arrName != ctlArray[0].name) {
23 arrName = ctlArray[0].ชื่อ;
24
25 สำหรับ (j=0; j < arrLen; j++) {
26 ถ้า (checkValue(ctlArray[j]) == false) {
27 กลับเท็จ;
28 }
29 }
30
31 }
32
33 }อื่น ๆ{
34
35 ถ้า (checkValue(องค์ประกอบ[i]) == เท็จ) {
36 กลับเท็จ;
37 }
38 }
39 }
40
41 คืนค่าจริง;
42}
43
44ฟังก์ชั่นค่าตรวจสอบ (obj){
45
46 หลา;
47 เลน = obj.maxLength;
48
49 ถ้า ( obj.type == "ข้อความ" ) {
50
51 //ถ้า (obj.msg != ไม่ได้กำหนด ) {
52 ถ้า (obj.msg) {
53 msgs = obj.msg.split(",");
54 } อื่น ๆ {
55 คืนค่าจริง;
56 }
57
58 ถ้า ( ตัด (obj.value) == "" && obj.musitem && obj.mustitem == "จริง") {
59 แจ้งเตือน(ข้อความ[0]);
60 getFocusSelect(obj);
61 กลับเท็จ;
62 } อื่น {
63
64 if ( ตัด (obj.value) != ""&& obj.feildtype && obj.feildtype == "จำนวนเต็ม" ) {
65
66 if ( checkNumLen(obj.value, len) == false ) {
67 แจ้งเตือน(ข้อความ[1]);
68 getFocusSelect(obj);
69 กลับเท็จ;
70 }
71
72 } อื่น ๆ ถ้า ( ตัด(obj.value) != "" && obj.feildtype && obj.feildtype == "string" ) {
73
74 if ( getLenthByByte(ตัดแต่ง(obj.value)) > len){
75 แจ้งเตือน(ข้อความ[1]);
76 getFocusSelect(obj);
77 กลับเท็จ;
78 }
79 }
80 }
81 }
82
83}
message.inc 1<%
2Const IMSG0001 = "ID 必须输入!"
3Const IMSG0002 = "ID输入格式错误!"
4Const IMSG0003 = "名称必须输入!"
5Const IMSG0004 = "名称输入格式错误!"
6%>
http://www.cnblogs.com/meil/archive/2007/04/05/700772.html