关于jquery.validate校验

1.需要在inputForm中对id为tag的输入框进行校验,要求输入的标签内容为最多4个字符,最多3个标签,且标签之间用,分隔
 HTML代码
< input type ="text" id ="tag" name ="tag" maxlength ="30" title ="输入提示:3个标签,每个不能大于4个字,每个标签之间用逗号','分隔" value ="${model.tag}" />


 javascript代码
    $.validator.addMethod( "checktag", function(value) {
       if(value=='') return true;
       else{
         var tags = value.split( ",");
         for( var i=0;i<tags.length;i++){
           if(i>2) return false; //多于3个标签
           if(tags[i].length>4) {
             return false;
          } //标签大于4个字
        }
      }
       return true;
    });
     //为inputForm注册validate函数
    $( "#inputForm").validate({
      rules:{
        tag: "checktag"
      }
    });

你可能感兴趣的:(jquery,职场,validate,校验,休闲)