呼嘯的風來了,angular這個起落架出航了


<html ng-app> <head> <script src="http://code.angularjs.org/angular-1.1.0.min.js"></script&gt; <script src="script.js"></script> </head> <body> <div ng-controller="InvoiceCntl"> <b>Invoice:</b> <br> <br> <table> <tr><td>Quantity</td><td>Cost</td></tr> <tr> <td><input type="integer" min="0" ng-model="qty" required ></td> <td><input type="number" ng-model="cost" required ></td> </tr> </table> <hr> <b>Total:</b> {{qty * cost | currency}} </div> </body></html> script.js: function InvoiceCntl($scope) { $scope.qty = 1; $scope.cost = 19.95;} end-to-end
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章