只有在字段中写入内容时,我的验证码才会输出错误消息。如何在输入字段为空时返回错误消息?
['validate-firstname', 'Please enter your firstname', function (v) {
return Validation.get('IsEmpty').test(v) || /^[a-zA-Z]+$/.test(v)
}],
答案 0 :(得分:0)
如果它是输入字段,那么您只需将类required-entry
添加到其中。
正如您在宣布验证的js/prototype/validation.js
中所看到的那样(它全部基于Andrew Tetlaw的工作 - > https://github.com/atetlaw/Really-Easy-Field-Validation)
['required-firstname', 'Please enter your first name.', function(v) {
return !Validation.get('IsEmpty').test(v);
}],