js中的时间与毫秒数互相转换
生活随笔
收集整理的這篇文章主要介紹了
js中的时间与毫秒数互相转换
小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.
【1】js毫秒時(shí)間轉(zhuǎn)換成日期時(shí)間var oldTime = (new Date("2012/12/25 20:11:11")).getTime(); //得到毫秒數(shù) //不是上面格式的時(shí)間需要轉(zhuǎn)換//starttime ='2012-12-25 20:17:24';starttime = starttime.replace(new RegExp("-","gm"),"/");var starttimeHaoMiao = (new Date(starttime)).getTime(); //得到毫秒數(shù)【2】毫秒數(shù)轉(zhuǎn)化為時(shí)間var oldTime = (new Date("2012/12/25 20:11:11")).getTime(); //得到毫秒數(shù)
var newTime = new Date(oldTime); //就得到普通的時(shí)間了
Date.parse(datestring)
//獲取完整的日期 var date=new Date; var year=date.getFullYear(); var month=date.getMonth()+1; month =(month<10 ? "0"+month:month); var mydate = (year.toString()+month.toString());
Date.parse(時(shí)間) new Date(year, month, 0);
var a=new Date() undefined a Sat Apr 28 2018 09:02:48 GMT+0800 (中國(guó)標(biāo)準(zhǔn)時(shí)間) a.toLocaleDateString() "2018/4/28"
var myDate = new Date();myDate.getYear(); //獲取當(dāng)前年份(2位) myDate.getFullYear(); //獲取完整的年份(4位,1970) myDate.getMonth(); //獲取當(dāng)前月份(0-11,0代表1月) myDate.getDate(); //獲取當(dāng)前日(1-31) myDate.getDay(); //獲取當(dāng)前星期X(0-6,0代表星期天) myDate.getTime(); //獲取當(dāng)前時(shí)間(從1970.1.1開始的毫秒數(shù)) myDate.getHours(); //獲取當(dāng)前小時(shí)數(shù)(0-23) myDate.getMinutes(); //獲取當(dāng)前分鐘數(shù)(0-59) myDate.getSeconds(); //獲取當(dāng)前秒數(shù)(0-59) myDate.getMilliseconds(); //獲取當(dāng)前毫秒數(shù)(0-999) myDate.toLocaleDateString(); //獲取當(dāng)前日期 var mytime=myDate.toLocaleTimeString(); //獲取當(dāng)前時(shí)間 myDate.toLocaleString( ); //獲取日期與時(shí)間
轉(zhuǎn)載于:https://www.cnblogs.com/smzd/p/7603529.html
總結(jié)
以上是生活随笔為你收集整理的js中的时间与毫秒数互相转换的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: C#多线程时对同一资源加锁实现互斥访问
- 下一篇: 基于汇川AM402编写跑马灯程序