首页 > 其他 > 详细

angular自己的笔记

时间:2014-12-16 20:37:49      阅读:313      评论:0      收藏:0      [点我收藏+]

  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

angular自己的笔记

原文:http://www.cnblogs.com/diligenceday/p/4167786.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!