不断递减函数值

实际上我做了一个 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--;

   }


LEATH
浏览 152回答 1
1回答
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript