码迷,mamicode.com
首页 > 其他好文 > 详细

时间戳 日期格式

时间:2017-07-28 09:46:14      阅读:132      评论:0      收藏:0      [点我收藏+]

标签:hot   art   否则   format   bsp   cti   log   uri   格式   

1.//获取当前系统时间 不要毫秒数

   var tmp = Date.parse( new Date() ).toString();

  tmp = tmp.substr(0,10);

2.//把时间戳转换成 年-月-日 时:分 格式

function add0(m){return m<10?‘0‘+m:m }
function format(shijianchuo)
{
//shijianchuo是整数,否则要parseInt转换
var time = new Date(shijianchuo);
var y = time.getFullYear();
var m = time.getMonth()+1;
var d = time.getDate();
var h = time.getHours();
var mm = time.getMinutes();
// var s = time.getSeconds();
return y+‘-‘+add0(m)+‘-‘+add0(d)+‘ ‘+add0(h)+‘:‘+add0(mm);
}
var t_hot_start_time_input = format(parseInt(t_hot_start_time)*1000);

3.
//把日期格式转换成时间戳
function get_unix_time(dateStr)
{
var newstr = dateStr.replace(/-/g,‘/‘);
var date = new Date(newstr);
var time_str = date.getTime().toString();
console.log(time_str);
return time_str.substr(0, 10);
}
var start_time_unix = get_unix_time(start_time);
 


时间戳 日期格式

标签:hot   art   否则   format   bsp   cti   log   uri   格式   

原文地址:http://www.cnblogs.com/Neilisme/p/7248349.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!