任何人在TextBox上使用AngulerJS验证.所以只能输入字母
取决于你想要的:
原文链接:https://www.f2er.com/angularjs/140853.html字母和空格:
ng-pattern="/^[a-zA-Z\s]*$/"
字母无空格:
ng-pattern="/^[a-zA-Z]*$/"
字母和空格:
ng-pattern="/^[a-zA-Z\s]*$/"
字母无空格:
ng-pattern="/^[a-zA-Z]*$/"