我正在尝试进行IBAN验证。在此步骤之前,用户可以输入国家/地区(本例中为5个国家/地区),然后当用户输入IBAN时,应根据所选国家/地区进行验证。我目前正在尝试将ng-iban与一个国家(BH)一起使用,但似乎无法让它发挥作用。任何帮助表示赞赏,如果有人能提供一些有用的提示,我也愿意使用iban.js库。我的代码包括国家选择和IBAN字段。谢谢!
<div class="form-group col-md-3 required">
<label class ="control-label">Country of Treatment</label>
<select class="form-control" ng-model="formDetails.Country" ng-options="lookup.ID as lookup.NAME for lookup in lookupCountry" required>
</select>
<div class="form-group col-md-3 required">
<label class ="control-label" >iBAN</label>
<input ng-model="formDetails.IbanNumber" ng-required= "formDetails.PaymentType == 'Wire' " ng-readonly="formDetails.PaymentType == 'Cheque'" class="form-control" placeholder="Enter iBAN Number" ng-iban="[BH]" >
</div>