zoukankan      html  css  js  c++  java
  • angular自己的笔记

      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

  • 相关阅读:
    python函数对象
    生成器表达式,列表推导式
    python转换excel成py文件
    Python处理excel表
    Go基础:接口相关
    JAVA03-输入和输出
    python6-while循环
    python5-字典
    自动化8-xpath
    网络学习day1-计算机网络基础
  • 原文地址:https://www.cnblogs.com/diligenceday/p/4167786.html
Copyright © 2011-2022 走看看