ng-bind="方法名" 绑定一方法的返回值 ng-bind="arr[0]" 绑定数组中的某一个值
#ng-repeat、ng-options(select)
- ng-repeat 数组循环html代码创建下拉列表
- ng-options 针对一个对象
- ng-repeat 字符串
<my-directive></my-directive>
A(属性)
<div my-directive="expression"></div>
C(类名)
<div class="my-directive"></div>
- html元素
- 接收两个参数的函数
- 外部html文件
- 同template
##replace
- false(默认)
- 将template/templateUrl的内容当作子元素插入到指令元素内部
#ng实现load
1> angular.element(window).bind('load', function() {
alert('1');
});
2> $scope.$on('$viewContentLoaded', function() {
alert('1');
});
3> $scope.$watch('$viewContentLoaded', function() {
alert('1');
});
4>
alert('code here');
}
#双向绑定
* ng-form里面的验证,只有当表达式满足验证,才会实时进行双向绑定。
#filter * | date:'yyyy-MM-dd h:m:s' * | filter:字符串/对象 (显示指定字符串或对象) * | limitTo:n 选择前n个记录
#ng-init * 初始化某个值 * 页面加载,可以默认执行某个方法