angular.js四大特性
1、MVC
2、双向数据绑定
3、directives(重点)
4、模块化和依赖注入
一、directives
//E:element,A:attribute(认),C:class,M:comment
restrict: 'EACM',
//模板
template: '<div>hello</div>',
//templateUrl: '',
replace: true
angular.js四大特性
1、MVC
2、双向数据绑定
3、directives(重点)
4、模块化和依赖注入
一、directives
//E:element,A:attribute(认),C:class,M:comment
restrict: 'EACM',
//模板
template: '<div>hello</div>',
//templateUrl: '',
replace: true