JS获取系统当前时间
Posted shuzu渊
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS获取系统当前时间相关的知识,希望对你有一定的参考价值。
//系统当前时间
var now = new Date();
var year = now.getFullYear();
var month = now.getMonth() + 1;
var day = now.getDate();
var currentime = year + "-" + month + "-" + day;
currentimes = Date.parse(new Date(currentime));
以上是关于JS获取系统当前时间的主要内容,如果未能解决你的问题,请参考以下文章