JS时间戳与日期格式互相转换的简单方法示例
(编辑:jimmy 日期: 2024/11/6 浏览:3 次 )
前端时间格式转时间戳的几种方法
<script type="text/javascript"> var date=new Date(); console.log(date);//Wed Feb 13 2019 11:40:45 GMT+0800 (中国标准时间) // 1:不推荐这种办法,毫秒级别的数值被转化为000 var timeStamp1=Date.parse(date); console.log(timeStamp1);//1550029245000 // 2:通过valueOf()函数返回指定对象的原始值获得准确的时间戳值 var timeStamp2=date.valueOf(); console.log(timeStamp2);//1550029245434 // 3:通过原型方法直接获得当前时间的毫秒值,准确 var timeStamp3=date.getTime(); console.log(timeStamp3);//1550029245434 // 4:将时间转化为一个number类型的数值,即时间戳 var timeStamp4=Number(date); console.log(timeStamp4);//1550029245434 </script>
JS和jQuery用了一段时间,最近发现他们没有自带的时间戳格式化函数,于是综合网上相关的时间戳格式化函数,自己写了一个时间戳格式化函数DateToTime,这个函数提供了多种格式化样式:
Y-m-d,Y-m-d H:i:s,Y/m/d,Y/m/d H:i:s,Y年m月d日,Y年m月d日 H:i:s
这里的时间有时仅输入Y-m-d H:i也是可以使用的
/** * [TimeToDate时间戳转换为日期] * @param {[type]} unixTime [时间戳] * @param {String} type [Y-m-d,Y-m-d H:i:s,Y/m/d,Y/m/d H:i:s,Y年m月d日,Y年m月d日 H:i:s] */ function TimeToDate(unixTime,type="Y-M-D H:i:s"){ var date = new Date(unixTime * 1000);//时间戳为10位需*1000,时间戳为13位的话不需乘1000 var datetime = ""; datetime += date.getFullYear() + type.substring(1,2); datetime += (date.getMonth()+1 < 10 " " + (date.getHours() < 10 " " + (date.getHours() < 10 "htmlcode">TimeToDate("1515640111"); //2018-01-11 11:08:31 TimeToDate("1515640111","Y-m-d"); //2018-01-11 TimeToDate("1515640111","Y-m-d H:i"); //2018-01-11 11:08 TimeToDate("1515640111","Y-m-d H:i:s"); //2018-01-11 11:08:31 TimeToDate("1515640111","Y/m/d"); //2018/01/11 TimeToDate("1515640111","Y/m/d H:i:s"); //2018/01/11 11:08:31 TimeToDate("1515640111","Y年m月d日"); //2018年01月11日 TimeToDate("1515640111","Y年m月d日 H:i:s"); //2018年01月11日 11:08:31/** * [DateToTime 日期转换时间戳] * @param {[type]} day [日期格式,仅支持标准格式] */ function DateToTime(day){ // re = /(\d{4})("2018-01-11 11:08:31"); DateToTime("2018-01-11"); DateToTime("2018年01月11日 11时08分31秒"); DateToTime("2018");补充时间戳与日期相互转换:
function TimeToDate(date,format) { format = format || 'YYYY-MM-DD hh:mm:ss'; var dateTest = (/^(-)"时间戳格式不正确"); return; } var setdate = new Date(vdate); return parse({YYYY:setdate.getFullYear(), MM:digit(setdate.getMonth()+1), DD:digit(setdate.getDate()) , hh:digit(setdate.getHours()), mm:digit(setdate.getMinutes()), ss:digit(setdate.getSeconds()) }, format); }else { //将日期转换成时间戳 var arrs = date.match(/\w+|d+/g), newdate = new Date(arrs[0],parseInt(arrs[1])-1,arrs[2],arrs[3]||0,arrs[4]||0,arrs[5]||0), timeStr = Math.round(newdate.getTime() / 1000); return timeStr; } function parse(ymdhms, format) { var regymdzz = "YYYY|MM|DD|hh|mm|ss|zz"; return format.replace(new RegExp(regymdzz,"g"), function(str, index) { return str == "zz" "00":digit(ymdhms[str]); }); }; function digit(num) { return num < 10 "0" + (num | 0) :num; }; };总结
下一篇:JS如何调用WebAssembly编译出来的.wasm文件