萬盛學電腦網

 萬盛學電腦網 >> 腳本專題 >> javascript >> js 時間格式與時間戳的相互轉換示例代碼

js 時間格式與時間戳的相互轉換示例代碼

 很多的新手朋友們對js中的時間格式與時間戳的轉換比較陌生,下面就為大家詳細介紹下具體的轉換步驟,感興趣的朋友可以參考下

一.時間轉換時間戳   代碼如下: function transdate(endTime){  var date=new Date();  date.setFullYear(endTime.substring(0,4));  date.setMonth(endTime.substring(5,7)-1);  date.setDate(endTime.substring(8,10));  date.setHours(endTime.substring(11,13));  date.setMinutes(endTime.substring(14,16));  date.setSeconds(endTime.substring(17,19));  return Date.parse(date)/1000;  }    二.時間戳轉換時間  (1):轉換成 2011-3-16 16:50:43 格式:  代碼如下: function getDate(tm){  var tt=new Date(parseInt(tm) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ")  return tt;  }    (2):轉換成 2011年3月16日 16:50:43:  代碼如下: function getDate(tm){  var tt=new Date(parseInt(tm) * 1000).toLocaleString()  return tt;  }    (3):轉換成 2011年3月16日 16:50  代碼如下: function getDate(tm){  var tt=new Date(parseInt(tm) * 1000).toLocaleString().substr(0,16);  return tt;  }   
copyright © 萬盛學電腦網 all rights reserved