我正在使用formvalidation插件,我想要两个正则表达式模式。一种检测至少 1 位的 6 个字符,另一种检测用户输入的密码中的空格。他们两个的错误消息应该是不同的,这是我需要两种模式。
到目前为止,我尝试使用一种 javascript 模式
validators: {
regexp: {
regexp: /^[a-z\s]+$/i,
message: 'The full name can consist of alphabetical characters and spaces only'
}
}
和一个内联模式
<input type="text" class="form-control" name="fullName"
data-fv-regexp="true"
data-fv-regexp-regexp="^[a-z\s]+$
data-fv-regexp-message="The full name can consist of alphabetical characters and spaces only" />
当我有 1 个 javascript 和 1 个内联时,它只会使用内联。
我也尝试了两种 javascript 模式,但这是一个错误
validators: {
regexp: {
regexp: /^[a-z\s]+$/i,
message: 'The full name can consist of alphabetical characters and spaces only'
},
regexp: {
regexp: different regex,
message: 'different message'
}
}
有谁知道该怎么做?