js把日期字符串转换成时间戳

时间:2022-04-28 02:38:16

前端有时候可能要从日期控件中拿到日期,然后参与计算,下边记录一个把日期字符串转换成时间戳的小函数。
dateStr格式为2014-05-08 00:22:11

function get_unix_time(dateStr)
{

var newstr = dateStr.replace(/-/g,'/');
var date = new Date(newstr);
var time_str = date.getTime().toString();
return time_str.substr(0, 10);
}