Validator.js 
 Validator = {
Require : /.+/,
Email : /^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$/,
Phone : /^((\(\d{2,3}\))|(\d{3}\-))?(\(0\d{2,3}\)|0\d{2,3}-)?[1-9]\d{6,7}(\-\d{1,4})?$/,
Mobile : /^((\(\d{2,3}\))|(\d{3}\-))?13\d{9}$/,
Url : /^http:\/\/[A-Za-z0-9]+\.[A-Za-z0-9]+[\/=\?%\-&_~`@[\]\':+!]*([^<>\"\"])*$/,
IdCard : /^\d{15}(\d{2}[A-Za-z0-9])?$/,
Currency : /^\d+(\.\d+)?$/,
Number : /^\d+$/,
Zip : /^[1-9]\d{5}$/,
QQ : /^[1-9]\d{4,8}$/,
Integer : /^[-\+]?\d+$/,
Double : /^[-\+]?\d+(\.\d+)?$/,
English : /^[A-Za-z]+$/,
Chinese :  /^[\u0391-\uFFE5]+$/,
Username : /^[a-z]\w{3,}$/i,
UnSafe : /^(([A-Z]*|[a-z]*|\d*|[-_\~!@#\$%\^&\*\.\(\)\[\]\{\}<>\?\\\/\'\"]*)|.{0,5})$|\s/,
IsSafe : function(str){return !this.UnSafe.test(str);},
SafeString : "this.IsSafe(value)",
Filter : "this.DoFilter(value, getAttribute('accept'))",
Limit : "this.limit(value.length,getAttribute('min'),  getAttribute('max'))",
LimitB : "this.limit(this.LenB(value), getAttribute('min'), getAttribute('max'))",
Date : "this.IsDate(value, getAttribute('min'), getAttribute('format'))",
Time : "this.IsTime(value)",
OTime : "this.OnTime(value)",
Repeat : "value == document.getElementsByName(getAttribute('to'))[0].value",
Range : "getAttribute('min') < (value|0) && (value|0) < getAttribute('max')",
Compare : "this.compare(value,getAttribute('operator'),getAttribute('to'))",
Custom : "this.Exec(value, getAttribute('regexp'))",
Group : "this.MustChecked(getAttribute('name'), getAttribute('min'), getAttribute('max'))",
ErrorItem : [document.forms[0]],
ErrorMessage : ["以下原因导致提交失败:\t\t\t\t"],
Validate : function(theForm, mode){
var obj = theForm || event.srcElement;
var count = obj.elements.length;
this.ErrorMessage.length = 1;
this.ErrorItem.length = 1;
this.ErrorItem[0] = obj;
for(var i=0;i<count;i++){
with(obj.elements[i]){
var _dataType = getAttribute("dataType");
if(typeof(_dataType) == "object" || typeof(this[_dataType]) == "undefined")  continue;
this.ClearState(obj.elements[i]);
if(getAttribute("require") == "false" && value == "") continue;
switch(_dataType){
case "Date" :
case "Time" :
case "OTime" :
case "Repeat" :
case "Range" :
case "Compare" :
case "Custom" :
case "Group" : 
case "Limit" :
case "LimitB" :
case "SafeString" :
case "Filter" :
if(!eval(this[_dataType])) {
this.AddError(i, getAttribute("msg"));
}
break;
default :
if(!this[_dataType].test(value)){
this.AddError(i, getAttribute("msg"));
}
break;
}
}
}
if(this.ErrorMessage.length > 1){
mode = mode || 1;
var errCount = this.ErrorItem.length;
switch(mode){
case 2 :
for(var i=1;i<errCount;i++)
this.ErrorItem[i].style.color = "red";
case 1 :
alert(this.ErrorMessage.join("\n"));
this.ErrorItem[1].focus();
break;
case 3 :
for(var i=1;i<errCount;i++){
try{
var span = document.createElement("SPAN");
span.id = "__ErrorMessagePanel";
span.style.color = "red";
this.ErrorItem[i].parentNode.appendChild(span);
span.innerHTML = this.ErrorMessage[i].replace(/\d+:/,"<br>*");
}
catch(e){alert(e.description);}
}
this.ErrorItem[1].focus();
break;
default :
alert(this.ErrorMessage.join("\n"));
break;
}
return false;
}
return true;
},
limit : function(len,min, max){
min = min || 0;
max = max || Number.MAX_VALUE;
return min <= len && len <= max;
},
LenB : function(str){
return str.replace(/[^\x00-\xff]/g,"**").length;
},
ClearState : function(elem){
with(elem){
if(style.color == "red")
style.color = "";
var lastNode = parentNode.childNodes[parentNode.childNodes.length-1];
if(lastNode.id == "__ErrorMessagePanel")
parentNode.removeChild(lastNode);
}
},
AddError : function(index, str){
this.ErrorItem[this.ErrorItem.length] = this.ErrorItem[0].elements[index];
this.ErrorMessage[this.ErrorMessage.length] = this.ErrorMessage.length + ":" + str;
},
Exec : function(op, reg){
return new RegExp(reg,"g").test(op);
},
compare : function(op1,operator,op2){
switch (operator) {
case "NotEqual":
return (op1 != op2);
case "GreaterThan":
return (op1 > op2);
case "GreaterThanEqual":
return (op1 >= op2);
case "LessThan":
return (op1 < op2);
case "LessThanEqual":
return (op1 <= op2);
default:
return (op1 == op2);            
}
},
MustChecked : function(name, min, max){
var groups = document.getElementsByName(name);
var hasChecked = 0;
min = min || 1;
max = max || groups.length;
for(var i=groups.length-1;i>=0;i--)
if(groups[i].checked) hasChecked++;
return min <= hasChecked && hasChecked <= max;
},
DoFilter : function(input, filter){
return new RegExp("^.+\.(?=EXT)(EXT)$".replace(/EXT/g, filter.split(/\s*,\s*/).join("|")), "gi").test(input);
},
IsDate : function(op, formatString){
formatString = formatString || "ymd";
var m, year, month, day;
switch(formatString){
case "ymd" :
m = op.match(new RegExp("^((\\d{4})|(\\d{2}))([-./])(\\d{1,2})\\4(\\d{1,2})$"));
if(m == null ) return false;
day = m[6];
month = m[5]*1;
year =  (m[2].length == 4) ? m[2] : GetFullYear(parseInt(m[3], 10));
break;
case "dmy" :
m = op.match(new RegExp("^(\\d{1,2})([-./])(\\d{1,2})\\2((\\d{4})|(\\d{2}))$"));
if(m == null ) return false;
day = m[1];
month = m[3]*1;
year = (m[5].length == 4) ? m[5] : GetFullYear(parseInt(m[6], 10));
break;
default :
break;
}
if(!parseInt(month)) return false;
month = month==0 ?12:month;
var date = new Date(year, month-1, day);
        return (typeof(date) == "object" && year == date.getFullYear() && month == (date.getMonth()+1) && day == date.getDate());
function GetFullYear(y){return ((y<30 ? "20" : "19") + y)|0;}
},
 IsTime : function(str){
var r = str.match(/^(\d{1,4})(-|\/)(\d{1,2})\2(\d{1,2}) (\d{1,2}):(\d{1,2}):(\d{1,2})$/);
if(r==null)return false; var d = new Date(r[1], r[3]-1,r[4],r[5],r[6],r[7]);
return (d.getFullYear()==r[1]&&(d.getMonth()+1)==r[3]&&d.getDate()==r[4]&&d.getHours()==r[5]&&d.getMinutes()==r[6]&&d.getSeconds()==r[7]);
},OnTime : function(str){
             var r = str.match(/^(\d{1,2}):(\d{1,2}):(\d{1,2})$/);
             if(r==null)return false; 
             return (0<=r[1]&&r[1]<24&&0<=r[2]&&r[2]<60&&0<=r[3]&&r[3]<60);
  }
 }
 

解决方案 »

  1.   

    谢谢楼上的,太多了 呵呵我想要的是  用Validator验证框架  结合 Struts来验证的
      

  2.   

    struts的吗?用validwhen吧   <!-- 必输,并且长度在4-20字符之间 -->
          <field property="password" depends="required,minlength,maxlength">
            <arg key="validatorForm.password.displayname" />
            <arg name="minlength" key="${var:minlength}" resource="false" position="1"/>
            <arg name="maxlength" key="${var:maxlength}" resource="false" position="2"/>
            <var>
              <var-name>minlength</var-name>
              <var-value>4</var-value>
            </var>
            <var>
              <var-name>maxlength</var-name>
              <var-value>20</var-value>
            </var>
          </field>   <!-- 必输,长度在4-20字符之间,并且跟password相等 -->
          <field property="password2" depends="required,minlength,maxlength,validwhen">
            <arg key="validatorForm.password2.displayname" />
            <arg name="minlength" key="${var:minlength}" resource="false" position="1"/>
            <arg name="maxlength" key="${var:maxlength}" resource="false" position="2"/>
            <var>
              <var-name>minlength</var-name>
              <var-value>4</var-value>
            </var>
            <var>
              <var-name>maxlength</var-name>
              <var-value>20</var-value>
            </var>
            <msg name="validwhen" key="validatorForm.error.matchpassword" />
            <var>
              <var-name>test</var-name>
              <var-value>(*this* == password)</var-value>
            </var>
          </field>
      

  3.   

    lvdream() :
    js验证虽然很美丽,但是是花瓶。
    很容易就被人绕过了。
      

  4.   

    或者我把我的代码贴出来,看看到底那里错了validator-rules.xml  
    -------
    <validator name="twofields" 
        classname="org.appfuse.webapp.util.ValidationUtil" method="validateTwoFields" 
        methodParams="java.lang.Object,
                      org.apache.commons.validator.ValidatorAction,
                      org.apache.commons.validator.Field,
                      org.apache.struts.action.ActionErrors,
                      javax.servlet.http.HttpServletRequest" 
       depends="required" msg="errors.twofields">
        <javascript><![CDATA[
            function validateTwoFields(form) {
                var bValid = true;
                var focusField = null;
                var i = 0;
                var fields = new Array();
                oTwoFields = new twofields();
                for (x in oTwoFields) {
                    var field = form[oTwoFields[x][0]];
                    var secondField = form[oTwoFields[x][2]("secondProperty")];
                
                    if (field.type == 'text' ||
                        field.type == 'textarea' ||
                        field.type == 'select-one' ||
                        field.type == 'radio' ||
                        field.type == 'password') {
                
                        var value;
                        var secondValue;
                        // get field's value
                        if (field.type == "select-one") {
                            var si = field.selectedIndex;
                            value = field.options[si].value;
                            secondValue = secondField.options[si].value;
                        } else {
                            value = field.value;
                            secondValue = secondField.value;
                        }
                    
                        if (value != secondValue) {
                        
                            if (i == 0) {
                                focusField = field;
                            }
                            fields[i++] = oTwoFields[x][1];
                            bValid = false;
                        }
                    }
                }
                
                if (fields.length > 0) {
                    focusField.focus();
                    alert(fields.join('\n'));
                }
                
                return bValid;
            }]]></javascript>
    </validator>validation.xml
    -------
     <form name="passwordForm">
               <field property="name" depends="required">
       <arg key="userForm.username"/>
    </field>
    <field property="password" depends="twofields">
       <msg name="twofields" key="errors.twofields"/>
       <arg key="userForm.password" resource="true" position="0"/>
       <arg key="userForm.confirmPassword" resource="true" position="1"/>
       <var>
         <var-name>secondProperty</var-name>
         <var-value>password2</var-value>
       </var>
    </field>          
            </form>ValidationUtil.java
    ---------
    package com.html.util;import javax.servlet.http.HttpServletRequest;import org.apache.commons.validator.GenericValidator;
    import org.apache.commons.validator.ValidatorAction;
    import org.apache.commons.validator.ValidatorUtil;
    import org.apache.struts.action.ActionErrors;
    import org.apache.struts.validator.Resources;
    import org.apache.commons.validator.Field; public class ValidationUtil {
    public static boolean validateTwoFields(Object bean, ValidatorAction va,
                Field field, ActionErrors errors,
                HttpServletRequest request) {
    String value =
    ValidatorUtil.getValueAsString(bean, field.getProperty());
    String sProperty2 = field.getVarValue("secondProperty");
    String value2 = ValidatorUtil.getValueAsString(bean, sProperty2);if (!GenericValidator.isBlankOrNull(value)) {
    try {
    if (!value.equals(value2)) {
    errors.add(field.getKey(),
    Resources.getActionError(request, va, field));return false;
    }
    } catch (Exception e) {
    errors.add(field.getKey(),
    Resources.getActionError(request, va, field));return false;
    }
    }return true;
    }
    }
    页面
    <html:form action="/password" method="POST">
     姓名: <html:text property="name" /><html:errors property="name"/> <br />
     密码: <html:password property="password" redisplay="true" /><html:errors property="password"/> <br />
     确认密码: <html:password property="password2" redisplay="true" /><html:errors property="password2"/> <br />
    <html:submit property="submit" value="发送" />
    </html:form>
      

  5.   

    feigme(泡沫微笑。o 0) :
    用不着这么麻烦,看看我写的validation.xml吧。