标签:
AngularJS诞生于2009年,由Misko Hevery 等人创建,后为Google所收购。是一款优秀的前端JS框架,已经被用于Google的多款产品当中。AngularJS有着诸多特性,最为核心的是:MVVM、模块化、自动化双向数据绑定、语义化标签、依赖注入等等。
AngularJS是为了克服HTML在构建应用上的不足而设计的。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
<! doctype html> < html ng-app> < head > < script src = "angular-1.1.0.min.js" ></ script > < 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; } |
标签:
原文地址:http://www.cnblogs.com/f19huangtao/p/4862701.html