試試這個
<textarea name="firstname" id="firstname" required ng-model="firstname" ng-maxlength="160" ng-minlength="50"></textarea>
<div ng-show="myForm.firstname.$dirty" role="alert">
<span ng-show="myForm.firstname.$error.required"> Please enter Name
</span>
<span ng-show="myForm.firstname.$error.minlength"> Please enter atleast 50 characters
</span>
<span ng-show="myForm.firstname.$error.maxlength"> Maximum allowed characters are 160
</span>
</div>
var app = angular.module("app", []);
app.controller("ctrl", function($scope) {
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app" ng-controller="ctrl">
<form name="myForm" novalidate autocomplete="off" role="form">
<textarea name="firstname" id="firstname" required ng-model="firstname" ng-maxlength="160" ng-minlength="50"></textarea>
<div ng-show="myForm.firstname.$dirty" role="alert">
<span ng-show="myForm.firstname.$error.required"> Please enter Name
</span>
<span ng-show="myForm.firstname.$error.minlength"> Please enter atleast 50 characters
</span>
<span ng-show="myForm.firstname.$error.maxlength"> Maximum allowed characters are 160
</span>
</div>
</form>
</div>
在這裏,你正在嘗試做的兩個HTML驗證以及角驗證
angularjs ng-minlength validation is not working, form still being submitted
如果你只是想顯示最小長度,你可以這樣做
<span ng-show="firstname.length < 50"> Please enter atleast {{50 - firstname.length}} characters
</span>
var app=angular.module("app",[]);
app.controller("ctrl",function($scope){
});
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<div ng-app="app" ng-controller="ctrl">
<form name="myForm" novalidate autocomplete="off" role="form">
<textarea name="name" id="firstname" required ng-model="firstname" maxlength="160" minlength="50"></textarea>
<div ng-show="myForm.name.$dirty" role="alert">
<span ng-show="myForm.name.$error.required"> Please enter Name
</span>
<span ng-show="firstname.length < 50"> Please enter atleast {{50 - firstname.length}} characters
</span>
</div>
</form>
</div>
問題是您使用的是maxlength,使用角度方式'ng-maxlength','ng-minlength' –