javascript 封装Date日期类实例详解
程序员文章站
2022-06-29 19:47:08
javascript-封装date日期类
(一)对日期进行格式化
自定义date日期类的format()格式化方法
方式一:(非原创) ...
javascript-封装date日期类
(一)对日期进行格式化
自定义date日期类的format()格式化方法
方式一:(非原创)
// 对date的扩展,将 date 转化为指定格式的string // 月(m)、日(d)、小时(h)、分(m)、秒(s)、季度(q) 可以用 1-2 个占位符, // 年(y)可以用 1-4 个占位符,毫秒(s)只能用 1 个占位符(是 1-3 位的数字) // 例子: // (new date()).format("yyyy-mm-dd hh:mm:ss.s") ==> 2016-09-19 16:32:53.731 // (new date()).format("yyyy-m-d h:m:s:s") ==> 2016-9-19 16:40:9:955 date.prototype.format = function (fmt) { //author: meizz var o = { "m+": this.getmonth() + 1, //月份 "d+": this.getdate(), //日 "h+": this.gethours(), //小时 "m+": this.getminutes(), //分 "s+": this.getseconds(), //秒 "q+": math.floor((this.getmonth() + 3) / 3), //季度 "s": this.getmilliseconds() //毫秒 }; if (/(y+)/.test(fmt)) fmt = fmt.replace(regexp.$1, (this.getfullyear() + "").substr(4 - regexp.$1.length)); for (var k in o) if (new regexp("(" + k + ")").test(fmt)) fmt = fmt.replace(regexp.$1, (regexp.$1.length == 1) ? (o[k]) : (("00" + o[k]).substr(("" + o[k]).length))); return fmt; };
测试:
window.onload=function() { var date = new date(); var b = date.tolocaledatestring();//获取的格式为:2016年9月19日 var d = date.tolocaletimestring();//下午4:42:46 var e = date.tolocalestring();//2016年9月19日 下午4:44:02 var f = date.todatestring();//mon sep 19 2016 var g = date.toutcstring();//mon, 19 sep 2016 08:45:42 gmt var h = date.tostring();//mon sep 19 2016 16:46:23 gmt+0800 (中国标准时间) //自定义日期格式 var c = date.format("yyyy-mm-dd hh:mm:ss");//format()方法是自定义的 document.getelementbyid("aa").value = c; };
(二)根据日期返回本周周一和周日的日期
/** * 根据日期返回本周周一和周日的日期 * @param day * 参数日期 * @param num * 第几周 * @return oneweek * 周一,周日所在日期 */ function getweekdate(day,num) { num = num || 0; // 返回值:周一和周日所在的日期 var oneweek = {}; // 初始日期 var initdate = ""; // 截取年月日 initdate = day.split(' ')[0]; // ie兼容性问题,将yyyy-mm-dd转换成yyyy/mm/dd initdate = initdate.replace(/-/g,"/"); // 将string转换成date initdate = new date(date.parse(initdate));//格式只能是yyyy/mm/dd // 返回 day距离1970 年 1 月 1 日0时0分的毫秒数 var nowtime = initdate.gettime(); // 返回星期的某一天的数字: 0(周日) 到 6(周六) var weeknum = initdate.getday(); // 一天所代表的毫秒数 var onedaytime = 24 * 60 * 60 * 1000; //显示周一 var mondaytime = nowtime - (weeknum - 1) * onedaytime ; //显示周日 var sundaytime = nowtime + (7 - weeknum) * onedaytime ; if (0 != num) { mondaytime += 7 * num * onedaytime; sundaytime += 7 * num * onedaytime; } //初始化日期时间 var monday = new date(mondaytime); var sunday = new date(sundaytime); // formatdate是自定义的格式化方法 monday = monday.formatdate('yyyy-mm-dd'); sunday = sunday.formatdate('yyyy-mm-dd'); oneweek.monday = monday; oneweek.sunday = sunday; return oneweek; }
测试:
var week = getweekdate('2017-05-27',0); console.log(week.monday + "," + week.sunday);
注意:
date.parse()具有兼容性问题,低版本ie浏览器不支持"yyyy-mm-dd"转换成date,只支持"yyyy/mm/dd"转换成日期。
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!