js毫秒數轉換成時間格式

2022-05-03 19:42:11 字數 1172 閱讀 6752

date.prototype.format = function (fmt) ;

if (/(y+)/.test(fmt)) fmt = fmt.replace(regexp.$1, (this.getfullyear() + "").substr(4 - regexp.$1.length));

console.log((new date(毫秒數)).format("yyyy-mm-dd hh:mm:ss"))

console.log(

new date(毫秒數).format("yyyy-mm-dd hh:mm:ss:s"))

將date物件轉化成毫秒數:

var a = new

date().gettime();

console.log(a);

這樣就可以隨意轉化成我們想要的功能了。

js中原聲js時間函式方法:

var mydate = new date();

mydate.getyear();        //獲取當前年份(2位)

mydate.getfullyear();    //獲取完整的年份(4位,1970-????)

mydate.getmonth();       //獲取當前月份(0-11,0代表1月)

mydate.getdate();        //獲取當前日(1-31)

mydate.getday();         //獲取當前星期x(0-6,0代表星期天)

mydate.gettime();        //獲取當前時間(從1970.1.1開始的毫秒數)

mydate.gethours();       //獲取當前小時數(0-23)

mydate.getminutes();     //獲取當前分鐘數(0-59)

mydate.getseconds();     //獲取當前秒數(0-59)

mydate.getmilliseconds();    //獲取當前毫秒數(0-999)

mydate.tolocaledatestring();     //獲取當前日期

var mytime=mydate.tolocaletimestring();     //獲取當前時間

mydate.tolocalestring( );        //獲取日期與時間

js中的時間轉換 毫秒轉換成日期時間

js毫秒時間轉換成日期時間 var oldtime new date 2011 11 11 20 10 10 gettime 得到毫秒數 大多數是用毫秒數除以365 24 60 60 1000,這麼轉回去,這種方法轉換太過複雜,年月日,時分秒都要不同的方法獲取,而且有的年份有366天,有的365天,...

js中的時間與毫秒數互相轉換

js毫秒時間轉換成日期時間 var oldtime new date 2012 12 25 20 11 11 gettime 得到毫秒數 不是上面格式的時間需要轉換 starttime 2012 12 25 20 17 24 starttime starttime.replace new regex...

js中的時間與毫秒數互相轉換

js毫秒時間轉換成日期時間 var oldtime new date 2012 12 25 20 11 11 gettime 得到毫秒數 不是上面格式的時間需要轉換 starttime 2012 12 25 20 17 24 starttime starttime.replace new regex...