格式化时间格式
/**
* 格式化时间戳2017-2-24 08:48:00
*/
function formatDate(now) {
var year = now.getFullYear();
var month = now.getMonth() + 1;
var date = now.getDate();
var hour = now.getHours();
var minute = now.getMinutes();
var second = now.getSeconds();
return year + "-" + month + "-" + date + " " +dateLang(hour) + ":" + dateLang(minute) + ":" + dateLang(second);
}
function dateLang(s) {
return s < 10 ? '0' + s: s;
}