开发者

Application time

开发者 https://www.devze.com 2023-01-25 18:15 出处:网络
I need to show the application time based on the user side usage.. Pl开发者_如何学编程s guide me ...You could achieve this using the Date object in javascript:

I need to show the application time based on the user side usage..

Pl开发者_如何学编程s guide me ...


You could achieve this using the Date object in javascript:

<div id="date"></div>

<script type="text/javascript">
    var date = new Date();
    document.getElementById('date').innerHTML = date;
</script>
0

精彩评论

暂无评论...
验证码 换一张
取 消