0

フロントエンドの設計に基礎CSSを使用していますが、Abide(フォームバリデーター)をどのように使用できますか?

例:..フィールド電話番号に 10 文字のみを許可する必要がある場合..

私は財団とWeb開発を使用する初心者であるため、間違っている場合は修正してください。

私はすでにこれをやろうとしました...これはうまくいきません..

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.

    `
4

1 に答える 1