Angularjs使用过滤器完成排序功能

<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <script type="text/javascript" src="https://www.jb51.net/js/angularjs.js" ></script> <link href="https://www.jb51.net/css/bootstrap.css" /> <script> angular.module('myApp',[]) .service('data',function(){ return [ {id:1234,name:'ipad',price:3400}, {id:1244,name:'aphone',price:6400}, {id:1334,name:'mypad',price:4400}, {id:8234,name:'zpad',price:8400} ]; }) .controller('myController',function($scope,data){ $scope.data=data; $scope.change=function(order){ //$scope.orderType=''; $scope.order=order; if($scope.orderType==''){ $scope.orderType='-'; }else{ $scope.orderType=''; } } }) </script> <style> .red{color: red;} </style> </head> <body ng-app="myApp"> <div ng-controller="myController"> <nav> <div> <div> <form> <div> <input type="text" ng-model="search" placeholder="Search"> </div> </form> </div><!-- /.navbar-collapse --> </div><!-- /.container-fluid --> </nav> <table> <thead> <tr> <th ng-click="change('id')" ng-class="{dropup:orderType==''}">id<span ng-class="{red:order=='id'}"></span></th> <th ng-click="change('name')" ng-class="{dropup:orderType==''}">name<span ng-class="{red:order=='name'}"></span></th> <th ng-click="change('price')" ng-class="{dropup:orderType==''}">price<span ng-class="{red:order=='price'}"></span></th> </tr> </thead> <tbody> <tr ng-repeat="x in data | filter:search | orderBy:orderType+order "> <td>{{x.id}}</td> <td>{{x.name}}</td> <td>{{x.price}}</td> </tr> </tbody> </table> </div> </body> </html>

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/wyzjsd.html