JS如何获取当前时间7天或者15天后的时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS如何获取当前时间7天或者15天后的时间相关的知识,希望对你有一定的参考价值。
JS如何获取当前时间7天或者15天后的时间
需要精确到秒
比如现在是2007-4-17 12:54:25
我要获取15天后的时间,如果日期超过月份自动增加
Date strdate = new Date();
long begindate = strdate.getTime();
long enddate = begindate + (15*24*60*60*1000);
strdate.setTime(enddate);
String str = new java.text.SimpleDateFormat("yyyy-MM-dd HH:mm:ss").format(strdate);
out.println(str);本回答被提问者采纳
js获取当前年月日前一天,7天后更新,例如20141005显示为141004七天之后20141012显示为141011,依次类推
参考技术A var recu = function(sleep)setTimeout(function()
var now = new Date;
now.setDate(now.getDate() - 1);
var x = "" + now.getFullYear() + (now.getMonth() + 1) + now.getDate();
x = x.substr(2);
document.write("");
document.write(x);
document.close();
recu(7*24*60*60*1000);
, sleep);
recu(0);
以上是关于JS如何获取当前时间7天或者15天后的时间的主要内容,如果未能解决你的问题,请参考以下文章
js如何得到当前时间再加几天并且让时间自动变成下一年或者下一个月 例如: 2012-12-11加上30天 2013-1-10