DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> JavaScript綜合知識 >> js 時間格式與時間戳的相互轉換示例代碼
js 時間格式與時間戳的相互轉換示例代碼
編輯:JavaScript綜合知識     

 很多的新手朋友們對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;  }   
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved