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
WBOYOriginal
2016-05-16 16:54:492365browse

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);
}
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