angular自己的笔记

时间:2021-06-18 18:11:25

  angular知道怎么用了, 就打算读一读源代码;

<html ng-app="phonecatApp">
<head>
<meta charset="utf-8" />
<script src="http://cdn.bootcss.com/jquery/2.1.1-rc2/jquery.min.js"></script>
    <!--这个angular就是下面我贴出来的JS代码-->
<script type="text/javascript" src="angular_devolop.js"></script>
</head>
<body ng-controller="PhoneListCtrl" id="p"> <ul>
<li ng-repeat="phone in phones" t={{txt}}>
{{phone.name}}
<p>{{phone.snippet}}</p>
</li>
</ul> </body>
<script>
//初始化用户模块;
var phonecatApp = angular.module('phonecatApp', []); //为用户的控制器添加反射, 就是回调了, 文档加载完毕就会用到了;
phonecatApp.controller('PhoneListCtrl', function($scope) {
$scope.txt = "text";
$scope.phones = [
{'name': 'Nexus S',
'snippet': 'Fast just got faster with Nexus S.'},
{'name': 'Motorola XOOM™ with Wi-Fi',
'snippet': 'The Next, Next Generation tablet.'},
{'name': 'MOTOROLA XOOM™',
'snippet': 'The Next, Next Generation tablet.'}
];
}); </script>
</html>

  JS代码:

  http://files.cnblogs.com/diligenceday/angular_devolop.js