我正在使用angularjs在75处停止范围滑块,但这不是一个好方法。身体可以指导我如何做吗? [编辑,以在max = 75答案后澄清]请记住,我确实想显示总计100或最大比例,但仍想限制为75%或75。
<html ng-app="root">
<body>
<div ng-controller="index">{{message}}
<input type=range ng-model="data.sl" id=sl />
<input type=text ng-model="data.sl" />
</div>
</body>
</html>
<script src="angular.js"></script>
angular.module('root', [])
.controller("index", ["$scope", function ($scope) {
$scope.message = "Hello World!";
$scope.data = {};
$scope.data.sl = 12;
$scope.$watch('data.sl',function(nv,ov){
if(nv==ov)return;
if(nv >= 75){
document.getElementById("sl").stepDown(10);
console.log("going up");
}
});
}]);
最佳答案
只需使用max
属性来限制范围输入的最大值。像这样:
<input type="range" value="0" max="75">
有关更多信息,您可以使用MDN的文档about the input element。
关于javascript - 如何停止输入数字的HTML5范围?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/29282292/