AI写作智能体 自主规划任务,支持联网查询和网页读取,多模态高效创作各类分析报告、商业计划、营销方案、教学内容等。 广告
~~~ <body ng-app="example" ng-controller="con1"> <table border="1" width="500"> <tr> <td>商品名称:</td> <td>商品价格:</td> <td>商品数量:</td> <td>总价格:</td> </tr> <tr> <td>{{data.item.name}}</td> <td>{{data.item.price}}</td> <td>{{data.item.num}}</td> <td>{{data.item.num*data.item.price}}</td> <td> <button ng-click="data.add()">添加一件</button> </td> <td> <button ng-click="data.del()">减少一件</button> </td> </tr> </table> </body> ~~~ ~~~ var m = angular.module('example', []); m.controller('con1', ["$scope", function ($scope) { $scope.data = { item: {'name': "apple", 'price': 200, 'num': 2}, add: function () { $scope.data.item.num = Math.min(++$scope.data.item.num, 6); }, del: function () { $scope.data.item.num = Math.max(--$scope.data.item.num, 0); } } }]); ~~~ ![](https://box.kancloud.cn/be3281aebe47315db5b8c7eabbabf625_689x100.png)