zoukankan      html  css  js  c++  java
  • AngularJS_对象数组-filter-orderBy

     1 <!doctype html>
     2 <html>
     3 <head>
     4 <meta charset="utf-8">
     5 <title>无标题文档</title>
     6 <script src="http://apps.bdimg.com/libs/angular.js/1.3.9/angular.min.js"></script>
     7 </head>
     8 
     9 <body>
    10 <div ng-app="myApp" ng-controller="myCtl">
    11     输入过滤字符:<input type="text" ng-model="test">  
    12     <ul>
    13         <li ng-repeat="x in names | filter:test | orderBy:'firstname'">
    14         {{x.firstname+','+x.lastname}}
    15         </li>
    16      </ul>
    17 </div>
    18 <script>
    19 var app=angular.module("myApp",[]);
    20 app.controller("myCtl",function($scope){
    21     $scope.names=[{firstname:'john',lastname:'cena'},{firstname:'bill',lastname:'gates'}];
    22 });
    23 </script>
    24 </body>
    25 </html>
  • 相关阅读:
    day 49
    day 48
    day 46
    IOC和DI到底是什么?
    堆排序算法
    快速排序算法
    java中try-catch-finally中的return语句
    归并排序算法
    选择排序算法
    冒泡排序算法
  • 原文地址:https://www.cnblogs.com/cag2050/p/5100587.html
Copyright © 2011-2022 走看看