Check by server.
服务器端校验
True if a string's length == len.
字符串长度是否等于指定长度
True if n1 > n2.
大于某值
True if n1 >= n2.
大于等于某值
True if n > min and n < max.
是否在两数字之间
Is a blank string.
是不是空白字符串
Only Chinese letters and its characters.
仅仅是中文字
Is a valid email address with pattern format.
是否为合法的电子邮箱地址
Is a valid email domain.
是否为合法电子邮箱后缀:英文字母或数字组成
Is a valid email addresses splited with space or comma.
是否为合法的多个由空格或分号分隔的电子邮箱地址
Is null or undefined or an empty string|array|JSON|object.
是不是null、undefinded、空字符串、数组、JSON或对象
Is an empty object without any property.
是不是无属性的空对象
Only English letters and its characters.
仅仅英文字母及其字符
Is a valid URL.
Is a date string. The default format is YYYY-MM-DD or YYYY/MM/DD.
是否为日期格式
Is a valid number with valid lengths.
检查数字及格式:"{整数位长度}.{小数位长度}"
integral part's length
fractional part's length
Each character is a full-width character.
全部是全角字符
Each character is a half-width character.
全部是半角字符
Is a valid format IP.
是否合法的IP地址
Is only english letters.
是否仅字母组成
Is only english letters or chars.
是否字母或数字
Is a negative number.
是否是负数。例如,'-4.15','-1,977'都是负数。
Is only number 0~9.
是否仅数字0-9
Check a string with the pattern.
按正则表达式检查
Is a positive number.
是否是正数。例如,'+4.15','+1,977'都是正数。
True if n1 < n2.
小于某值
True if n1 <= n2.
小于等于某值
True if a string's length >= len.
比指定长度长
True if a string's length < len.
比指定长度短
Check helper
类型检查类