AngularJs练习Demo8

Posted 编程猴子

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AngularJs练习Demo8相关的知识,希望对你有一定的参考价值。

@{
    Layout = null;
}

<!DOCTYPE html>

<html>
<head>
    <meta name="viewport" content="width=device-width" />
    <title>自定义过滤器</title>
    <script type="text/javascript" src="~/Scripts/angular.js"></script>
    <script src="~/Scripts/js/filter.js"></script>
</head>
<body>
    <div ng-app="myApp">
        <div ng-controller="firstController">
            {{name|rHello}}
            {{name|rjs}}
        </div>
    </div>
    <script type="text/javascript">
        var app = angular.module("myApp", ["myApp.Fileter"]);
        app.controller("firstController", function ($scope) {
            $scope.name = "Hello Angularjs";

        });
        app.filter("rHello", function () {//自定义过滤器
            return function (input,n1,n2) {
                return input.replace(/Hello/,"你好");
            }
        });
    </script>
</body>
</html>

  

以上是关于AngularJs练习Demo8的主要内容,如果未能解决你的问题,请参考以下文章

angularJS使用ocLazyLoad实现js延迟加载

angularjs购物车练习

从 AngularJS url 中删除片段标识符(# 符号)

初入AngularJS基础门

AngularJS ——ngResourceRESTful APIs 使用

数据结构(C语言版) 栈和队列 算法设计Demo8