JavaScript获取距离某天前或后的日期

下面是编程之家 jb51.cc 通过网络收集整理的代码片段。

编程之家小编现在分享给大家,也给大家做个参考。

/** 
* param  Date Object:Mon May 11 13:53:08 UTC+0800 2015  
* n 自param 起向后多少天 
* return Date Object:Mon May 11 13:53:08 UTC+0800 2015 
*/ 
function getDateBeforeParamDate(param,n){ 
var result = new Date(); 
if(param==null){ 
param = result; 
} 
if(n==null){ 
n=0; 
} 
param = new Date(param); 
millSecond = param.valueOf(); 
millSecond =  millSecond - n*24*3600*1000; 
result = new Date(millSecond); 
result = getTodayFormatea(result); 
return result; 
} 
/** 
* param  Date对象:Mon May 11 13:53:08 UTC+0800 2015  
* n 自param 向前多少天 
* return Date Object:Mon May 11 13:53:08 UTC+0800 2015 
*/ 
function getDateNextParamDate(param,n){ 
var result = new Date(); 
if(param==null){ 
param = result; 
} 
if(n==null){ 
n=0; 
} 
param = new Date(param); 
millSecond = param.valueOf(); 
millSecond = millSecond + n*24*3600*1000; 
result = new Date(millSecond); 
result = getTodayFormatea(result); 
return result; 
} 

以上是编程之家(jb51.cc)为你收集整理的全部代码内容,希望文章能够帮你解决所遇到的程序开发问题。

如果觉得编程之家网站内容还不错,欢迎将编程之家网站推荐给程序员好友。

相关文章

页面搜索关键词突出 // 页面搜索关键词突出 $(function () {...
jQuery实时显示日期、时间 html: <span id=&quot...
jQuery 添加水印 <script src="../../../.....
中文:Sys.WebForms.PageRequestManagerParserErrorExceptio...
1. 用Response.Write方法 代码如下: Response.Write(&q...
Jquery实现按钮点击遮罩加载,处理完后恢复 思路: 1.点击按...