js时间戳转为日期格式

转自:http://wyoojune.blog.163.com/blog/static/57093325201131193650725/

这个在php+mssql(日期类型为datetime)+ajax的时候才能用到,js需要把时间戳转为为普通格式,一般的情况下可能用不到

 

  
  
  
  
  1. <script>   
  2. function getLocalTime(nS) {   
  3.     return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');   
  4. }   
  5. alert(getLocalTime(1293072805));   
  6. </script> 

弹出

2010年12月23日 10:53

也可以用:

  
  
  
  
  1. <script>   
  2. function getLocalTime(nS) {   
  3.     return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17)}   
  4. alert(getLocalTime(1293072805));   
  5. </script>   

如果想弹出:2010-10-20 10:00:00这个格式的也好办

 

  
  
  
  
  1. <script>   
  2. function getLocalTime(nS) {   
  3.     return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");    
  4. }   
  5. alert(getLocalTime(1177824835));   
  6. </script>   

 

你可能感兴趣的:(js,职场,转化,时间格式,休闲)