我有一个日期对象,它已作为字符串保存到名为LastDate
从我得到的cookie中读取字符串
$.cookie('LastDate');
=“2014年1月3日星期五00:00:00 GMT + 0100(CET)”
如何在代码中将其转换回日期对象?我试过做Date.parse
但只返回秒
Date.parse($.cookie('LastDate'));
= 1388703600000
有没有办法将此字符串转换回实际日期对象?
由于
答案 0 :(得分:1)
要将dateString转换回Date对象,您只需要使用dateString作为参数创建一个新对象。在你的情况下:
var dateObj = new Date($.cookie('LastDate'));
答案 1 :(得分:0)
请使用以下代码:
var newDate = new Date();
newDate = new Date($ .cookie('LastDate'));
由于