gpt4 book ai didi

javascript - 用破折号验证数字

转载 作者:行者123 更新时间:2023-12-03 11:52:58 25 4
gpt4 key购买 nike

您好,我有一个输入字段,我想在其中进行验证,以便输入仅包含数字,但包含破折号,最多 11 个数字

  i.e  1233-224-1234

我应用了以下验证,仅接受数字

  <input ng-pattern="customNum" ng-model=value.id />
In my controller I have

function myCtrl($scope) {
$scope.customNum = /^\d+$/;
}

请告诉我如何更新此内容,以便输入 13 位数字,其中 11 位是数字,2 位是破折号。谢谢

最佳答案

请参阅此处:http://jsbin.com/talaz/1/

<form name="form" class="css-form" novalidate>      

<input type="text" ng-model="code" name="code" ng-pattern='/^\d{4}-\d{3}-\d{4}$/' />Code :{{code}}<br />
<span ng-show="form.size.$error.pattern ">
The code need to falow that 1234-123-1234 pattern</span>
</form>

关于javascript - 用破折号验证数字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25731716/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com