我按照以下格式获取日期:
Thu Jan 01 1970 21:30:00 GMT +0530(IST)
我希望剩下这段时间,我可以将日期更改为当前日期,如:
Mon Dec 14 2015 21:30:00 GMT +0530(IST)
任何人都可以帮助我吗?
答案 0 :(得分:2)
使用new Date();
答案 1 :(得分:1)
阅读评论我认为我理解你要实现的目标。试试这个:
var oldDate = new Date("Thu Jan 01 1970 21:30:00 GMT +0530(IST)");
var newDate = new Date();
newDate.setHours(oldDate.getHours());
newDate.setMinutes(oldDate.getMinutes());
newDate.setSeconds(oldDate.getSeconds());
然后newDate
应该包含您想要的日期。
答案 2 :(得分:0)
您正在获取日期对象。使用下面的内容来获取自定义内容。
date.getDay() + '-' + date.getDate() + '-' + (date.getMonth()+1) + '-' + date.getFullYear()
参考网址:
http://www.w3schools.com/jsref/jsref_getday.asp
http://www.w3schools.com/jsref/jsref_getdate.asp
http://www.w3schools.com/jsref/jsref_getmonth.asp
http://www.w3schools.com/jsref/jsref_getfullyear.asp