Home  >  Article  >  Web Front-end  >  JS 毫秒转时间示例代码_javascript技巧

JS 毫秒转时间示例代码_javascript技巧

WBOY
WBOYOriginal
2016-05-16 17:21:381174browse
复制代码 代码如下:

var oldTime = 1379782800000; //1970年以后的毫秒数
var newTime = new Date(oldTime);
alert(newTime);

输出格式:
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn