表单验证

必填:
class="required"
必填+邮箱:
class="required email"
电话:
class="phone"
密码:
class="required alphanumeric" minlength="6" maxlength="20"
确认密码:
class="required" equalto="#xxxId"
整数:
class="digits"
浮点数:
class="number"
最小值:
min="1"
最大值:
max="10"
最小值-最大值:
min="1" max="10"
最小长度:
minlength="6"
最大长度:
maxlength="10"
最小长度-最大长度:
minlength="6" maxlength="20"
信用卡:
class="creditcard"
字母、数字、下划线:
class="alphanumeric"
字母:
class="lettersonly"
网址:
class="url"
remote:
唯一性验证input添加属性:remote="xxxUrl"
customvalid+remote:
customvalid="customvalidXxx(element)" | remote="xxxUrl"

自定义扩展请参照:dwz.validate.method.js

错误提示信息国际化请参照:dwz.regional.zh.js