我有进度条
the page isnot working ERR_INCOMPLETE_CHUNKED_ENCODING
我使用<div class="progress-bar-line red" role="progressbar"
aria-valuenow="redrated" aria-valuemin="0" aria-valuemax="100"
ngStyle="max-width:{{redrated}}%"
>
<span class="title">{{ redrated }}%</span>
</div>
并尝试过尝试:
ngStyle="max-width:{{redrated}}%"
也提出同样的错误,请帮我解决此问题答案 0 :(得分:0)
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.6.4/angular.min.js"></script>
<body>
<div ng-app="myApp" ng-controller="myCtrl">
<div class="progress-bar-line red" role="progressbar"
aria-valuenow="redrated" aria-valuemin="0" aria-valuemax="100"
ng-style="{'max-width': '{{redrated}}%'}">
<span class="title">{{ redrated }}%</span>
</div>
</div>
<script>
var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope) {
$scope.redrated = 20;
});
</script>
</body>
</html>
&#13;