Thu Aug 22 2013 15:12:00 GMT 0800 (China Standard Time)
Convert
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