时间:2021-07-01 10:21:17 帮助过:37人阅读
var timestamp1 = Date.parse(new Date()); console.log(timestamp1); //杈撳嚭褰撳墠鏃堕棿鐨勬椂闂存埑var date = new Date(1520324618000); console.log(date); Y = date.getFullYear() + '-'; M = (date.getMonth()+1 < 10 ? '0'+(date.getMonth()+1) : date.getMonth()+1) + '-'; D = date.getDate() + ' '; h = date.getHours() + ':'; m = date.getMinutes() + ':'; s = date.getSeconds(); console.log(Y+M+D+h+m+s);
相关推荐:
详解js时间戳与日期格式之间相互转换方法
javascript - js时间戳如何转为时间格式
和PHP的date函数用法一样的JS时间戳格式化函数
以上就是js时间戳和普通时间相互转换方法代码的详细内容,更多请关注Gxl网其它相关文章!