angularjs-$interval 服务

简介:

<!DOCTYPE html>

<html>

<head>

<meta charset="utf-8">

<meta http-equiv="X-UA-Compatible" content="IE=edge">

<title></title>

<link rel="stylesheet" href="">

</head>

<body>

<div ng-app="myApp" ng-controller="myCtrl">

<h3>`theTime `</h3>

</div>

</body>

<script src="http://cdn.static.runoob.com/libs/angular.js/1.4.6/angular.min.js"></script>

<script>

var app = angular.module("myApp",[]);

app.controller("myCtrl",function($scope,$interval){

$scope.theTime = new Date().toLocaleTimeString();

$interval(function(){

$scope.theTime = new Date().toLocaleTimeString();

},1000);

});

</script>

</html>


本文转自  素颜猪  51CTO博客,原文链接:http://blog.51cto.com/suyanzhu/1895313
相关文章
|
JavaScript 前端开发 编译器
AngularJS------认识AngularJS
AngularJS------认识AngularJS
159 0
AngularJS------认识AngularJS
angularJS constant和value
angularJS可以通过constant(name,value)和value(name,value)对于创建服务也是很重要的。 相同点是:都可以接受两个参数,name和value。 区别: 1.constant(name,value)可以将一个已经存在的变量值注册为服务,并将其注入到应用的其他部分中。
1010 0