标签:
日期时间脚本库方法列表
Date.prototype.isLeapYear 判断闰年
Date.prototype.Format 日期格式化
Date.prototype.DateAdd 日期计算
Date.prototype.DateDiff 比较日期差
Date.prototype.toString 日期转字符串
Date.prototype.toArray 日期分割为数组
Date.prototype.DatePart 取日期的部分信息
Date.prototype.MaxDayOfDate 取日期所在月的最大天数
Date.prototype.WeekNumOfYear 判断日期所在年的第几周
StringToDate 字符串转日期型
IsValidDate 验证日期有效性
CheckDateTime 完整日期时间检查
daysBetween 日期天数差
// 输入一个日期输出后一天的日期 日期格式为 YYYY-MM-dd
function nextdate(date)
{ var date = new Date(date); //传入一个时间格式,如果不传入就是获取现在的时间了
var time = date.getTime();//毫秒数的时间戳
var next_time=time+(3600*24*1000);//时间戳为毫秒数,要*1000
var date = new Date(next_time);//Tue Sep 01 2015 08:01:26 GMT+0800 (中国标准时间)
var Y = date.getFullYear() + ‘-‘;
var M = (date.getMonth()+1 < 10 ? ‘0‘+(date.getMonth()+1) : date.getMonth()+1) + ‘-‘;
var D = (date.getDate()< 10 ? ‘0‘+date.getDate() : date.getDate());
return (Y+M+D);
}
// 输入一个日期输出前一天的日期 日期格式为 YYYY-MM-dd
function predate(date)
{ var date = new Date(date); //传入一个时间格式,如果不传入就是获取现在的时间了
var time = date.getTime();//毫秒数的时间戳
var next_time=time+(3600*24*1000);//时间戳为毫秒数,要*1000
var date = new Date(next_time);//Tue Sep 01 2015 08:01:26 GMT+0800 (中国标准时间)
var Y = date.getFullYear() + ‘-‘;
var M = (date.getMonth()+1 < 10 ? ‘0‘+(date.getMonth()+1) : date.getMonth()+1) + ‘-‘;
var D = (date.getDate()< 10 ? ‘0‘+date.getDate() : date.getDate());
return (Y+M+D);
}
js日期时间函数(经典+完善+实用)(转采自 :bicabo)
标签:
原文地址:http://www.cnblogs.com/linjinzhuang/p/4775363.html