标签:
1. Angular有哪些突出优点
1) MVC 基于Html-Javascript
2) 依赖注入
3) 数据双向绑定,响应式页面设计
4) 模块化,自定义指令
2. 简话数据绑定
1) 代码:
1 <input type="text" ng-model="hello1"> 2 3 <input type="text" ng-model="hello2"> 4 5 <textarea ng-bind="hello1" name="" id="" cols="30" rows="10"></textarea> 6 7 <span class="bg-danger">{{hello1}} {{hello2}}</span>
标签:
原文地址:http://www.cnblogs.com/meteorcn/p/4657043.html