js实现的日期操作类DateTime函数代码


Posted in Javascript onMarch 16, 2010
方法注解:
将指定的天数加到此实例的值上。
将指定的小时数加到此实例的值上。
将指定的分钟数加到此实例的值上。
将指定的毫秒数加到此实例的值上。
将指定的月份数加到此实例的值上。
将指定的秒数加到此实例的值上。
将指定的年份数加到此实例的值上。
将此实例的值与指定的 Date 值相比较,并指示此实例是早于、等于还是晚于指定的 Date 值。
返回一个数值相同的新DateTime对象
返回一个值,该值指示此实例是否与指定的 DateTime 实例相等。
获取此实例的日期部分。
获取此实例所表示的日期为该月中的第几天。
获取此实例所表示的日期是星期几。
获取此实例所表示日期的小时部分。
获取此实例所表示日期的分钟部分。
获取此实例所表示日期的毫秒部分。
获取此实例所表示日期的月份部分。
获取此实例的下个月一日的DateTime对象
获取此实例的下一个周日的DateTime对象
获取此实例的下一个周日的DateTime对象
获取此实例所表示日期的秒部分。
返回此实例的Date值
获取此实例所表示日期的年份部分。
指示此实例是否是DateTime对象
将当前 DateTime 对象的值转换为其等效的短日期字符串表示形式。
将当前 DateTime 对象的值转换为其等效的短时间字符串表示形式。
将当前 DateTime 对象的值转换为其等效的字符串表示形式。
验证Add系列的方法参数是否合法
继承自Date的方法
比较 DateTime 的两个实例,并返回它们相对值的指示。
返回指定年和月中的天数。
返回一个值,该值指示 DateTime 的两个实例是否相等。
返回指定的年份是否为闰年的指示。
获取一个 DateTime 对象,该对象设置为此计算机上的当前日期和时间,表示为本地时间。
将日期和时间的指定字符串表示形式转换为其等效的 DateTime。
获取当前日期,其时间组成部分设置为 00:00:00。
//表示时间上的一刻,通常以日期和当天的时间表示。 
function DateTime(year, month, day, hour, min, sec, millisec){ 
    var d = new Date();     if (year || year == 0){ 
        d.setFullYear(year); 
    } 
    if (month || month == 0){ 
        d.setMonth(month - 1); 
    } 
    if (day || day == 0){ 
        d.setDate(day); 
    } 
    if (hour || hour == 0){ 
        d.setHours(hour); 
    } 
    if (min || min == 0){ 
        d.setMinutes(min); 
    } 
    if (sec || sec == 0){ 
        d.setSeconds(sec); 
    } 
    if (millisec || millisec == 0){ 
        d.setMilliseconds(millisec); 
    } 
    //将指定的天数加到此实例的值上。 
    this.AddDays = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setDate(result.GetDay() + value); 
        return result; 
    } 
    //将指定的小时数加到此实例的值上。 
    this.AddHours = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setHours(result.GetHour() + value); 
        return result; 
    } 
    //将指定的分钟数加到此实例的值上。 
    this.AddMinutes = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setMinutes(result.GetMinute() + value); 
        return result; 
    } 
    //将指定的毫秒数加到此实例的值上。 
    this.AddMilliseconds = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setMilliseconds(result.GetMillisecond() + value); 
        return result; 
    } 
    //将指定的月份数加到此实例的值上。 
    this.AddMonths = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setMonth(result.GetValue().getMonth() + value); 
        return result; 
    } 
    //将指定的秒数加到此实例的值上。 
    this.AddSeconds = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setSeconds(result.GetSecond() + value); 
        return result; 
    } 
    //将指定的年份数加到此实例的值上。 
    this.AddYears = function(value){ 
        if(!ValidateAddMethodParam(value)){ 
            return null; 
        } 
        var result = this.Clone(); 
        result.GetValue().setFullYear(result.GetYear() + value); 
        return result; 
    }     
    //将此实例的值与指定的 Date 值相比较,并指示此实例是早于、等于还是晚于指定的 Date 值。 
    this.CompareTo = function(other){ 
        var internalTicks = other.getTime(); 
        var num2 = d.getTime(); 
     if (num2 > internalTicks) 
     { 
     return 1; 
     } 
     if (num2 < internalTicks) 
     { 
     return -1; 
     } 
     return 0; 
    } 
    //返回一个数值相同的新DateTime对象 
    this.Clone = function(){ 
        return new DateTime( 
             this.GetYear() 
            ,this.GetMonth() 
            ,this.GetDay() 
            ,this.GetHour() 
            ,this.GetMinute() 
            ,this.GetSecond() 
            ,this.GetMillisecond()); 
    } 
    //返回一个值,该值指示此实例是否与指定的 DateTime 实例相等。 
    this.Equals = function(other){ 
        return this.CompareTo(other) == 0; 
    } 
    //获取此实例的日期部分。 
    this.GetDate = function(){ 
        var result = new DateTime(d.getFullYear(), d.getMonth(), d.getDate(), 0, 0, 0, 0); 
        return result ; 
    } 
    //获取此实例所表示的日期为该月中的第几天。 
    this.GetDay = function(){ 
        return d.getDate(); 
    } 
    //获取此实例所表示的日期是星期几。 
    this.GetDayOfWeek = function(){ 
        return d.getDay(); 
    } 
    //获取此实例所表示日期的小时部分。 
    this.GetHour = function(){ 
        return d.getHours(); 
    } 
    //获取此实例所表示日期的分钟部分。 
    this.GetMinute = function(){ 
        return d.getMinutes(); 
    } 
    //获取此实例所表示日期的毫秒部分。 
    this.GetMillisecond = function(){ 
        return d.getMilliseconds(); 
    } 
    //获取此实例所表示日期的月份部分。 
    this.GetMonth = function(){ 
        return d.getMonth() + 1; 
    } 
    //获取此实例的下个月一日的DateTime对象 
    this.GetNextMonthFirstDay = function(){ 
        var result = new DateTime(this.GetYear(), this.GetMonth(), 1, 0, 0, 0, 0); 
        result = result.AddMonths(1); 
        return result; 
    } 
    //获取此实例的下一个周日的DateTime对象 
    this.GetNextWeekFirstDay = function(){ 
        var result = this.GetDate(); 
        return result.AddDays(7 - result.GetDayOfWeek()); 
    } 
    //获取此实例的下一个周日的DateTime对象 
    this.GetNextYearFirstDay = function(){ 
        return new DateTime(this.GetYear() + 1, 1, 1, 0, 0, 0, 0); 
    } 
    //获取此实例所表示日期的秒部分。 
    this.GetSecond = function(){ 
        return d.getSeconds(); 
    } 
    //返回此实例的Date值 
    this.GetValue = function(){ 
        return d; 
    } 
    //获取此实例所表示日期的年份部分。 
    this.GetYear = function(){ 
        return d.getFullYear(); 
    } 
    //指示此实例是否是DateTime对象 
    this.IsDateTime = function(){} 
    //将当前 DateTime 对象的值转换为其等效的短日期字符串表示形式。 
    this.ToShortDateString = function(){ 
        var result = ""; 
        result = d.getFullYear() + "-" + (d.getMonth() + 1) + "-" + d.getDate(); 
        return result;     
    } 
    //将当前 DateTime 对象的值转换为其等效的短时间字符串表示形式。 
    this.ToShortTimeString = function(){ 
        var result = ""; 
        result = d.getHours() + ":" + d.getMinutes() + ":" + d.getSeconds(); 
        return result;     
    } 
    //将当前 DateTime 对象的值转换为其等效的字符串表示形式。 
    this.ToString = function(format){ 
        if(typeof(format) == "string"){ 
        } 
        return this.ToShortDateString() + " " + this.ToShortTimeString(); 
    } 
    //验证Add系列的方法参数是否合法 
    function ValidateAddMethodParam(param){ 
        if(typeof(param) != "number"){ 
            return false; 
        } 
        return true; 
    } 
    //继承自Date的方法 
    this.getTime = function(){ 
        return d.getTime(); 
    } 
} 
//比较 DateTime 的两个实例,并返回它们相对值的指示。 
DateTime.Compare = function(d1, d2){ 
    return d1.CompareTo(d2); 
} 
//返回指定年和月中的天数。 
DateTime.DaysInMonth = function(year, month){ 
if ((month < 1) || (month > 12)) 
{ 
return "月份[" + month + "]超出范围"; 
} 
var numArray = DateTime.IsLeapYear(year) ? DateTime.DaysToMonth366 : DateTime.DaysToMonth365; 
return (numArray[month] - numArray[month - 1]); 
} 
//返回一个值,该值指示 DateTime 的两个实例是否相等。 
DateTime.Equals = function(d1, d2){ 
    return d1.CompareTo(d2) == 0; 
} 
//返回指定的年份是否为闰年的指示。 
DateTime.IsLeapYear = function(year) 
{ 
if ((year < 1) || (year > 0x270f)) 
{ 
return "年份[" + year + "]超出范围"; 
} 
if ((year % 4) != 0) 
{ 
return false; 
} 
if ((year % 100) == 0) 
{ 
return ((year % 400) == 0); 
} 
return true; 
} 
//获取一个 DateTime 对象,该对象设置为此计算机上的当前日期和时间,表示为本地时间。 
DateTime.Now = new DateTime(); 
//将日期和时间的指定字符串表示形式转换为其等效的 DateTime。 
DateTime.Parse = function(s){ 
    var result = new DateTime(); 
    var value = result.GetValue(); 
    value.setHours(0,0,0,0); 
    var dateRex = /\b[1-2][0-9][0-9][0-9][-]\d{1,2}[-]\d{1,2}\b/i; 
    if(dateRex.test(s)){ 
        var dateStr = s.match(dateRex)[0]; 
        try{ 
            var dateParts = dateStr.split("-"); 
            var year = dateParts[0] - 0; 
            var month = dateParts[1] - 1; 
            var day = dateParts[2] - 0; 
            value.setFullYear(year,month,day); 
        }catch(ex){ 
            return null; 
        } 
        var timeRex = /\b\d{1,2}[:]\d{1,2}[:]\d{1,2}\b/i; 
        if(timeRex.test(s)){ 
            var timeStr = s.match(timeRex)[0]; 
            try{ 
                var timeParts = timeStr.split(":"); 
                var hour = timeParts[0] - 0; 
                var min = timeParts[1] - 0; 
                var sec = timeParts[2] - 0; 
                value.setHours(hour,min,sec); 
            }catch(ex){ 
            } 
        } 
    }else{ 
        return null; 
    } 
    return result; 
} 
//获取当前日期,其时间组成部分设置为 00:00:00。 
DateTime.Today = new DateTime(null, null, null, 0, 0, 0, 0); 
//静态字段 
DateTime.DaysToMonth365 = [ 0, 0x1f, 0x3b, 90, 120, 0x97, 0xb5, 0xd4, 0xf3, 0x111, 0x130, 0x14e, 0x16d ]; 
DateTime.DaysToMonth366 = [ 0, 0x1f, 60, 0x5b, 0x79, 0x98, 0xb6, 0xd5, 0xf4, 0x112, 0x131, 0x14f, 0x16e ];
Javascript 相关文章推荐
js事件(Event)知识整理
Oct 11 Javascript
JQuery中attr方法和removeAttr方法用法实例
May 18 Javascript
Bootstrap 最常用的JS插件系列总结(图片轮播、标签切换等)
Jul 14 Javascript
浅谈JavaScript中变量和函数声明的提升
Aug 09 Javascript
Jquery遍历select option和添加移除option的实现方法
Aug 26 Javascript
js浏览器html5表单验证
Oct 17 Javascript
JavaScript实现滑动导航栏效果
Aug 30 Javascript
微信小程序下拉刷新界面的实现
Sep 28 Javascript
使用JS模拟锚点跳转的实例
Feb 01 Javascript
vue src动态加载请求获取图片的方法
Oct 17 Javascript
jquery使用FormData实现异步上传文件
Oct 25 jQuery
vue语法自动转typescript(解放双手)
Sep 18 Javascript
javascript json2 使用方法
Mar 16 #Javascript
jQuery 选择器理解
Mar 16 #Javascript
jQuery 学习入门篇附实例代码
Mar 16 #Javascript
Jquery Ajax学习实例4 向WebService发出请求,返回实体对象的异步调用
Mar 16 #Javascript
Jquery Ajax学习实例3 向WebService发出请求,调用方法返回数据
Mar 16 #Javascript
javascript 二维数组的实现与应用
Mar 16 #Javascript
Jquery Ajax 学习实例2 向页面发出请求 返回JSon格式数据
Mar 15 #Javascript
You might like
php数组函数序列之array_intersect() 返回两个或多个数组的交集数组
2011/11/10 PHP
php+mysqli实现批量执行插入、更新及删除数据的方法
2015/01/29 PHP
PHP6连接SQLServer2005的三部曲
2016/04/15 PHP
Yii2中使用join、joinwith多表关联查询
2016/06/30 PHP
用JavaScript和注册表脚本实现右键收藏Web页选中文本
2007/01/28 Javascript
FF IE兼容性的修改小结
2009/09/02 Javascript
javascript 面向对象编程 万物皆对象
2009/09/17 Javascript
用JQuery模仿淘宝的图片放大镜显示效果
2011/09/15 Javascript
JavaScript检测实例属性, 原型属性
2015/02/04 Javascript
javascript实现俄罗斯方块游戏的思路和方法
2015/04/27 Javascript
jQuery.each使用详解
2015/07/07 Javascript
js判断输入字符串是否为空、空格、null的方法总结
2016/06/14 Javascript
js中常用的Math方法总结
2017/01/12 Javascript
angular或者js怎么确定选中ul中的哪几个li
2017/08/16 Javascript
原生JS实现瀑布流插件
2018/02/06 Javascript
dts文件中删除一个node或属性的操作方法
2018/08/05 Javascript
简单了解node npm cnpm的具体使用方法
2019/02/27 Javascript
vue中利用iscroll.js解决pc端滚动问题
2020/02/15 Javascript
vue 实现setInterval 创建和销毁实例
2020/07/21 Javascript
python实现根据ip地址反向查找主机名称的方法
2015/04/29 Python
如何处理Python3.4 使用pymssql 乱码问题
2016/01/08 Python
Python模拟简单电梯调度算法示例
2018/08/20 Python
python实时获取外部程序输出结果的方法
2019/01/12 Python
python判断变量是否为int、字符串、列表、元组、字典的方法详解
2020/02/13 Python
python 基于opencv 实现一个鼠标绘图小程序
2020/12/11 Python
使用HTML5 IndexDB存储图像和文件的示例
2018/11/05 HTML / CSS
船餐厅和泰晤士河餐饮游轮:Bateaux London
2018/03/19 全球购物
探索欧洲最好的品牌:Bombinate
2019/06/14 全球购物
业务部经理岗位职责
2014/01/04 职场文书
《听鱼说话》教学反思
2014/02/15 职场文书
2014年民主评议党员工作总结
2014/12/02 职场文书
暗恋桃花源观后感
2015/06/12 职场文书
安全伴我行主题班会
2015/08/13 职场文书
2015年国庆节广播稿
2015/08/19 职场文书
浅谈MySQL之浅入深出页原理
2021/06/23 MySQL
Go语言grpc和protobuf
2022/04/13 Golang