<input id="myid" type="number" ng-model="maxVal" ng-change="maxValCheck()"
       max="5" min="1" value="1"/>


在控制器中

$scope.maxVal;
$scope.maxValCheck = function() {
    if($scope.maxVal> 5) {
        $scope.maxVal= 5;
    }
}


我想在输入字段的值大于5时将其更改为5,但是它不起作用。我究竟做错了什么?您是否有更好的方法建议这样做?

最佳答案

更好地使用指令。

范例:

<input limit-to="5" type="number"  ng-model="maxVal" >

app.directive("limitTo", [function() { return { restrict: "A", link: function(scope, elem, attrs) { var limit = parseInt(attrs.limitTo); angular.element(elem).on("keypress", function(e) { if (this.value > limit) e.preventDefault(); }); } } }]);

关于javascript - 当使用angularjs限制输入值时如何编辑,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56760922/

10-09 09:53