AngularJS能限定输入值的值域吗
2个回答
展开全部
Angularjs限制textarea输入字数的实现方法:
在textarea上绑定一个变量ng-model="length",统计当前输入的字数,然后在绑定一个变量通过ng-disabled="length>=140",让textarea变disabled,或者弹出框提示都可以。
function TextareaCtrl($scope)
{
$scope.checkText = function () {
if ($scope.text.length > 5) {
alert("text is too long");
$scope.text = $scope.text.substr(0, 5);
}
};
}
在textarea上绑定一个变量ng-model="length",统计当前输入的字数,然后在绑定一个变量通过ng-disabled="length>=140",让textarea变disabled,或者弹出框提示都可以。
function TextareaCtrl($scope)
{
$scope.checkText = function () {
if ($scope.text.length > 5) {
alert("text is too long");
$scope.text = $scope.text.substr(0, 5);
}
};
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询