angular过滤器表格排序

前端之家收集整理的这篇文章主要介绍了angular过滤器表格排序前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
<!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">
    <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 items">
            <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,move: function (element,'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);
                if(arguments.callee == 'undefined'){
                    arguments.callee = false;
                }
                arguments.callee[item] = !arguments.callee[item];
                $scope.items = $filter('orderBy')($scope.items,item,arguments.callee[item] );
            }
        }
    }());
</script>
</body>
</html>
原文链接:https://www.f2er.com/angularjs/147037.html

猜你在找的Angularjs相关文章