我正在使用基础 css 进行前端设计以及如何使用 Abide(表单验证器)。
示例:.. 如果我只需要在字段电话号码中允许 10 个字符..
纠正我如果我错了,因为我是使用基础和网络开发的新手。
我已经尝试过这样做......这不起作用..
version : '5.3.3',
settings : {
live_validate : true,
focus_on_invalid : true,
error_labels: true, // labels with a for="inputId" will recieve an `error` class
timeout : 1000,
patterns : {
alpha: /^[a-zA-Z]+$/,
alpha_numeric : /^[a-zA-Z0-9]+$/,
integer: /^[-+]?\d+$/,
// modified here
cvv : /^([0-9]){3,4}$/, \\ I have just copied the above line and renamed the pattern as "cv"
cv : /^([0-9]){3,4}$/' \\the pattern cvv works but the same when I copy pasted and renamed to cv does not work.
`