2

我想使用ng-pattern验证我的文本输入字段,该字段应该只接受希伯来语字符,有时输入正常,有时由于某种原因被拒绝。(第一个是验证第二个字母不是等等)示例:

<input type="text" class="form-control" name="firstName" ng-model="Join.firstName" id="firstName" aria-describedby="firstNameHelp" maxlength="15" ng-pattern="onlyHebrewPattern" required>

给出的解决方案是: scope.onlyHebrewPattern = /^[\u05D0-\u05F3]+$/g;

原帖

4

1 回答 1

4
$scope.onlyHebrewPattern = /^[א-ת\s]+$/;
于 2016-09-26T11:10:27.923 回答