angularjs搜索

来源:互联网 发布:js bind 编辑:程序博客网 时间:2024/06/18 06:02
<!DOCTYPE html><html><head>    <meta charset="utf-8" />    <title>angularjs过滤器排序</title>    <link rel="stylesheet" href="bootstrap.min.css" />    <script src="jquery-2.1.3.min.js"></script>    <script src="bootstrap.min.js"></script>    <script src="angular.min.js"></script>    <script src="angular-animate.min.js"></script>    <script src="ui-bootstrap-tpls-1.3.2.js"></script></head><body ng-app="Demo" ng-controller="testCtrl as ctrl">关键字:<input ng-model="key"><table class="table table-bordered">    <tr>        <td ng-click="orderBy('id')" style="cursor: pointer">序号</td>        <td ng-click="orderBy('name')" style="cursor: pointer">名字</td>        <td ng-click="orderBy('email')" style="cursor: pointer">邮箱</td>    </tr>    <tr ng-repeat="item in lists">        <td>{{item.id}}</td>        <td>{{item.name}}</td>        <td>{{item.email}}</td>    </tr></table><script type="text/javascript">    (function(){        var app = angular.module('Demo', ["ngAnimate"])            .animation('.kongtest', kongtest)            .controller('testCtrl',testCtrl);        function kongtest() {            return {                enter: function (element, done) {                    element.css('display', 'none');                    $(element).slideDown(1000, function () {                        done();                    });                },                leave: function (element, done) {                    $(element).slideUp(1000, function () {                        done();                    });                },                move: function (element, done) {                    element.css('display', 'none');                    $(element).slideDown(500, function () {                        done();                    });                }            }        }        function testCtrl($scope, $filter) {            $scope.items = [                { id: "1", name : "小白牛", email : "weicoa8@126.com" },                { id: "2", name : "迷迭香", email : "midiexiang8@126.com" },                { id: "3", name : "龙之谷", email : "dragon8@126.com" },            ];            $scope.orderBy = function (item) {                alert(arguments.callee[item]);                if(arguments.callee[item] == 'undefined'){                    arguments.callee[item] = false;                }                arguments.callee[item] = !arguments.callee[item];                $scope.items = $filter('orderBy')($scope.items, item,arguments.callee[item] );            };            $scope.lists = $scope.items;            $scope.$watch('key',function (n, w) {                $scope.lists = $filter('filter')($scope.items, n);            });        }    }());</script></body></html>

原创粉丝点击