码迷,mamicode.com
首页 > 其他好文 > 详细

Angular实时显示日期时间

时间:2017-06-22 19:44:23      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:button   var   min   angularjs   new   date()   utf-8   cti   script   

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>AngularJS 内置服务</title>
    <script src=‘./angular.min.js‘></script>
</head>
<body ng-app="App">
    <div ng-controller="DemoCtrl">
        <p>当前时间为: {{now|date:‘yyyy-MM-dd hh:mm:ss‘}}</p>
        <button ng-click="stop()">停止</button>
    </div>
    <script>
        var App = angular.module(App, []);
        App.controller(DemoCtrl, [$scope, $timeout, $interval, function ($scope, $timeout, $interval) {
             $scope.now = new Date();
            var timer = $interval(function () {
                $scope.now = new Date();
            }, 1000);

            $scope.stop = function () {
                $interval.cancel(timer);
            }
        }])

    </script>
</body>
</html>

 

Angular实时显示日期时间

标签:button   var   min   angularjs   new   date()   utf-8   cti   script   

原文地址:http://www.cnblogs.com/hughman/p/7066763.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!