苏飞论坛

标题: js时间戳怎么转成日期格式 [打印本页]

作者: 站长苏飞    时间: 2012-11-29 14:31
标题: js时间戳怎么转成日期格式
                                           js时间戳怎么转成日期格式
这个在主群里有朋友§☆釺哖蟲...o问js时间戳怎么转成日期格式 ,他的问题是这样的
/Date(1354116249000)/ 这样的格式怎么转成时间格式
这是从C#的Datatime格式通过Json传到Js里面的,
下面是我们的提供的方法
js需要把时间戳转为为普通格式,一般的情况下可能用不到的,
下面先来看第一种吧
[code=html]<script>     
function getLocalTime(nS) {     
   return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');     
}     
alert(getLocalTime(1293072805));     
</script> [/code]
结果是
2010年12月23日 10:53
第二种
[code=html]<script>     
function getLocalTime(nS) {     
    return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17)}     
alert(getLocalTime(1293072805));     
</script> [/code]
如果你想得到这样格式的怎么办呢?
2010-10-20 10:00:00
看下面代码吧
[code=html]    <script>     
    function getLocalTime(nS) {     
       return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");      
    }     
    alert(getLocalTime(1177824835));     
    </script>  [/code]
也可以这样写的
[code=html]    function   formatDate(now)   {     
              var   year=now.getYear();     
              var   month=now.getMonth()+1;     
              var   date=now.getDate();     
              var   hour=now.getHours();     
              var   minute=now.getMinutes();     
              var   second=now.getSeconds();     
              return   year+"-"+month+"-"+date+"   "+hour+":"+minute+":"+second;     
              }     
         
              var   d=new   Date(1230999938);     
              alert(formatDate(d));  [/code]
好了问题解决
需要注意的是
不要把字符串中的Date(这样的字符也传进去,要先处理一下,这样很方便 就能处理的
可以使用replace方法
如下:
[code=html]replace("/Date(","").replace(")/","");[/code]

作者: SillyPGM    时间: 2012-11-29 14:55
很详细,支持一下飞哥!多出精品!
作者: 站长苏飞    时间: 2012-11-29 15:01
SillyPGM 发表于 2012-11-29 14:55
很详细,支持一下飞哥!多出精品!

大家一起出,我一个人力量有限,呵呵
作者: weiyz2011    时间: 2012-12-21 15:27
不错




欢迎光临 苏飞论坛 (http://www.sufeinet.com/) Powered by Discuz! X3.4