Home > Web Front-end > JS Tutorial > Code to convert Chinese standard time into standard format_javascript skills

Code to convert Chinese standard time into standard format_javascript skills

WBOY
Release: 2016-05-16 16:54:49
Original
2362 people have browsed it

Thu Aug 22 2013 15:12:00 GMT 0800 (China Standard Time)

Convert

Copy Code Code As follows:

function formatTen(num) {
return num > 9 ? (num "") : ("0" num);
}

function formatDate(date) {
var year = date.getFullYear();
var month = date.getMonth() 1;
var day = date.getDate();
var hour = date. getHours();
var minute = date.getMinutes();
var second = date.getSeconds();
return year "-" formatTen(month) "-" formatTen(day);
}
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template