function getNowFormatDate() {
var date = new Date(); //获取时间
var year = date.getFullYear(); //年
var month = date.getMonth() + 1; //月
var strDate = date.getDate(); //日
var hours = date.getHours(); //时
var minutes = date.getMinutes(); //分
var second = date.getSeconds(); //秒
//判断时间的
// if (month >= 1 && month <= 9) {
// month = "0" + month;
// }
// if (strDate >= 0 && strDate <= 9) {
// strDate = "0" + strDate;
// }
// if(hours >= 0 && hours <= 9){
// hours = "0" + hours;
// }
// if(minutes >= 0 && minutes <= 9){
// minutes = "0" + minutes;
// }
// if(second >= 0 && second <= 9){
// second = "0" + second;
// }
//三元表达式优化
var currentdate = year +'-'+
(month>9? month : '0'+month) +'-'+
(strDate>9? strDate : '0'+strDate) +' '+
(hours>9? hours : '0'+hours) +':'+
(minutes>9? minutes : '0'+minutes) +':'+
(second>9? second : '0'+second) ;
console.log(currentdate)
return currentdate;
}
getNowFormatDate()
时间戳转换成年月日时分秒格式
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- //服务器返回10位格式时间戳利用如下方法将时间戳转换成字符串的时间格式NSDateFormatter* form...
- 先看看后台返回的这个鬼 /Date(1456478126000+0800)/ 准换unix网址 http://to...
- 最近因为项目需要,使用到了Excel表数据上传,遇到了一个让我非常头疼的问题,那就是excel表中的数据格式是日期...
- 在数据库的使用中,经常需要按指定日期来查询记录,以便于统计,而在数据库中,有很多存储的是时间戳, 也有的直接存日期...