欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

js时间转为日期格式

程序员文章站 2022-12-01 14:24:09
这个在php+mssql(日期类型为datetime)+ajax的时候才能用到,js需要把时间戳转为为普通格式,一般的情况下可能用不到  

这个在php+mssql(日期类型为datetime)+ajax的时候才能用到,js需要把时间戳转为为普通格式,一般的情况下可能用不到
 
<script>  
function getLocalTime(nS) {  
    return new Date(parseInt(nS) * 1000).toLocaleString().replace(/:\d{1,2}$/,' ');  
}  
alert(getLocalTime(1293072805));  
</script>
弹出
2010年12月23日 10:53
也可以用:
<script>  
function getLocalTime(nS) {  
    return new Date(parseInt(nS) * 1000).toLocaleString().substr(0,17)}  
alert(getLocalTime(1293072805));  
</script>  
如果想弹出:2010-10-20 10:00:00这个格式的也好办
 
<script>  
function getLocalTime(nS) {  
    return new Date(parseInt(nS) * 1000).toLocaleString().replace(/年|月/g, "-").replace(/日/g, " ");   
}  
alert(getLocalTime(1177824835));  
</script>