实际上我做了一个 html 页面,其中有两个部分,当我点击第一部分时,数字会增加,当我点击第二部分时,第二部分的数字会增加。我为此使用了 Angular JS。现在我在每个页面的底部做了一个按钮。我希望当我点击那个按钮时,数字应该减少,但是当我点击按钮时我使用了这个功能,它只减少了一次。如果您有进一步的查询如何使用函数减少值, 我在这里有更详细的信息<button type="button" ng-click="delPoint(1)" id="sub1" style="position: absolute;bottom: 0;left: 10px;font-size: 50px;color: white;font-weight:bolder; margin: 0px !important;cursor: pointer;">-</button><button type="button" ng-click="delPoint(2)" id="sub2" style="position: absolute;bottom: 0;right: 10px;font-size: 50px;color: white;font-weight:bolder; margin: 0px !important;cursor: pointer;">-</button>$scope.delPoint = function (j) { if ($scope.team1.score > 0 && $scope.team2.score >0){ $scope['team' + j].score--; $scope.gameInfo.servesSinceSwitch--; }
添加回答
举报
0/150
提交
取消