gpt4 book ai didi

javascript - 如何在 AngularJS 中获取毫秒时间

转载 作者:太空宇宙 更新时间:2023-11-04 09:57:35 25 4
gpt4 key购买 nike

我能够使用 AngularJS 及其“间隔”选项及时获得秒数,但我想将毫秒添加到相同的 2 位数字上。下面是代码。谁能告诉我如何添加毫秒。

AngularJs 代码

var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $interval) {
$scope.theTime = new Date().toLocaleTimeString();
$interval(function () {
$scope.theTime = new Date().toLocaleTimeString();
}, 1000);
});

HTML

<div class="col-lg-2" ng-app="myApp" ng-controller="myCtrl">
<h3 style="color: blue;font-family: cursive;"><b>{{theTime}}</b></h3>
</div>

更新 - 关于我如何找到解决方案。

我刚刚做了以下更改。感谢 Pranjal

AngularJS 代码

var app = angular.module('myApp', []);
app.controller('myCtrl', function($scope, $interval) {
$scope.theTime = new Date();
$interval(function () {
$scope.theTime = new Date();
}, 1);
});

HTML

<div class="col-lg-2" ng-app="myApp" ng-controller="myCtrl">
<h3 style="color: blue;font-family: cursive;font-size: 20;margin-left: 20;"><b>{{theTime | date:'HH:mm:ss:sss a'}}</b></h3>
</div>

最佳答案

<body>
<script type="text/javascript">
var app = angular.module('MyApp', [])
app.controller('MyController', function ($scope) {
$scope.CurrentDate = new Date();
});
</script>
<div ng-app="MyApp" ng-controller="MyController">

<span>{{CurrentDate | date:'HH:mm:ss:sss'}}</span>

</div>
</body>

关于javascript - 如何在 AngularJS 中获取毫秒时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38582017/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com