- 11
- 0
- 约 7页
- 2017-03-09 发布于贵州
- 举报
js日期时间格验证,时间比较
js日期时间格式验证,时间比较.txt什么叫神话?请听男人向你表达爱意;什么叫传说?请听男人对你的承诺;什么叫梦境?请看你自己听到前两者时的反应。js日期时间格式验证,时间比较.txt你无法改变别人,但你可以改变自己;你无法改变天气,但你可以改变心情;你无法改变生命长度,但你可以拓展它的宽度。
日期时间脚本库方法列表
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 日期天数差
js 代码
//
// 判断闰年
//
Date.prototype.isLeapYear function return 0 this.getYear %4 this.getYear %100! 0 || this.getYear %400 0 ; //
// 日期格式化
// 格式 YYYY/yyyy/YY/yy 表示年份
// MM/M 月份
// W/w 星期
// dd/DD/d/D 日期
// hh/HH/h/H 时间
// mm/m 分钟
// ss/SS/s/S 秒
//
Date.prototype.Format function formatStr var str formatStr; var Week [日,一,二,三,四,五,六]; str str.replace /yyyy|YYYY/,this.getFullYear ; str str.replace /yy|YY/, this.getYear % 100 9? this.getYear % 100 .toString :0 + this.getYear % 100 ; str str.replace /MM/,this.getMonth 9?this.getMonth .toString :0 + this.getMonth ; str str.replace /M/g,this.getMonth ; str str.replace /w|W/g,Week[this.getDay ] ; str str.replace /dd|DD/,this.getDate 9?this.getDate .toString :0 + this.getDate ; str str.replace /d|D/g,this.getDate ; str str.replace /hh|HH/,this.getHours 9?this.getHours .toString :0 + this.getHours ; str str.replace /h|H/g,this.getHours ; str str.replace /mm/,this.getMinutes 9?this.getMinutes .toString :0 + this.getMinutes ; str str.replace /m/g,this.getMinutes ; str str.replace /ss|SS/,this.getSeconds 9?this.getSeconds .toString :0 + this.getSeconds ; str str.replace /s|S/g,this.getSeconds ; return str; //+
//| 求两个时间的天数差 日期格式为 YYYY-MM-dd //+
function daysBetween DateOne,DateTwo var neMonth DateOne.substring 5,DateOne.lastIndexOf - ; var neDay DateOne.substring DateOne.length,DateOne.lastIndexOf - +1 ; va
您可能关注的文档
- iphone如改短信铃声.docx
- iphone改铃声的方法(未越狱).doc
- iPhone新必学:25个iPhone4技巧.doc
- iphone无注册itunes明细教程 文档.doc
- iPhone短铃声制作及修改详细图文教程.docx
- iphone自义短信铃声.doc
- iphone自义设置铃声(包含截图).doc
- iPhone自义铃声.doc
- Iphone自义铃声制作方法介绍.doc
- iphone钢软件 中文版 简谱.doc
- 广东省广州省实验中学教育集团2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 广东省广州大学附属中学2025-2026学年八年级上学期奥班期中物理试题(解析版).docx
- 广东省广州市第八十六中学2025-2026学年八年级上学期期中物理试题(含答案).docx
- 广东省广州市第八十九中学2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 广东省广州市第二中学2025-2026学年八年级上学期期中考试物理试题(含答案).docx
- 广东省广州市第八十六中学2025-2026学年八年级上学期期中物理试题(解析版).docx
- 广东省广州市第八十九中学2025-2026学年八年级上学期期中考试物理试题(含答案).docx
- 广东省广州市第二中学2025-2026学年八年级上学期期中考试物理试题(解析版).docx
- 2026《中国人寿上海分公司营销员培训体系优化研究》18000字.docx
- 《生物探究性实验教学》中小学教师资格模拟试题.docx
原创力文档

文档评论(0)