0

我正在尝试使用 Zurb 基础来匹配密码,除data-equalto标签外一切正常,我的代码是:

 .password-field
        %label
          Parola
          %small necesar
        %input#pw1{required: '', type: 'password'}
        %small.error A strong password is needed
      .password-field
        %label
          Confirma Parola
          %small necesar
        %input{required: '', type: 'password' , "data-equalto"=> 'pw1'}
        %small.error A strong password is needed or passwords do not match

我期待 A strong password is needed or passwords do not match消息弹出,但没有发生

4

1 回答 1

0

密码验证模式被删除大概是因为对于什么使密码“足够强”存在不同的意见。

但是,您可以定义自己的密码字段要求。请参阅遵守文档

$(document).foundation({
  abide : {
    patterns: {
      password: /^yourRegexHere/
    }
  }
});
于 2014-04-12T09:07:50.540 回答