博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js计算前三个月的时间精确到时分秒
阅读量:6323 次
发布时间:2019-06-22

本文共 1004 字,大约阅读时间需要 3 分钟。

hot3.png

从系统当前时间计算,前三个月的时间点精确到时分秒

Date.prototype.format = function(format) {    	var o = {        "M+" : this.getMonth() + 1, // month        "d+" : this.getDate(), // day        "h+" : this.getHours(), // hour        "m+" : this.getMinutes(), // minute        "s+" : this.getSeconds(), // second        "q+" : Math.floor((this.getMonth() + 3) / 3), // quarter        "S" : this.getMilliseconds()    	// millisecond    	}    	if (/(y+)/.test(format))        	format = format.replace(RegExp.$1, (this.getFullYear() + "").substr(4 - RegExp.$1.length));    	for ( var k in o)        if (new RegExp("(" + k + ")").test(format))            format = format.replace(RegExp.$1, RegExp.$1.length == 1 ? o[k] : ("00" + o[k]).substr(("" + o[k]).length));    	return format;}var begin=new Date();begin.setMonth((new Date().getMonth()-3));//var begintime= begin.format("yyyy-MM-dd 00:00:00");零点格式var begintime= begin.format("yyyy-MM-dd hh:mm:ss");$('#beginDate').val(begintime);

 

转载于:https://my.oschina.net/ferchen/blog/1540750

你可能感兴趣的文章
2012-01-09_2
查看>>
数学 - 线性代数导论 - #5 矩阵变换之置换与转置
查看>>
java数据结构:队列
查看>>
使用.NET进行高效率互联网敏捷开发的思考和探索【一、概述】
查看>>
SSM练习——登录实现
查看>>
余光中_百度百科
查看>>
方法sessionjsp之监听器
查看>>
判断 网络是否通常,以及判断用户使用的网络类型,时2G\3G\还是wifi
查看>>
下一代 Hadoop YARN :相比于MRv1,YARN的优势
查看>>
阿里巴巴离职DBA 35岁总结的职业生涯
查看>>
LOT NUMBER / PO / RECEIPT NO Relation.
查看>>
Fedora9常用网络调试
查看>>
Matlab绘图方法汇总
查看>>
关于操作系统的进程调度问题
查看>>
POJ 1243 One Person
查看>>
Bash: about .bashrc, .bash_profile, .profile, /etc/profile, etc/bash.bashrc and others
查看>>
hibernate 映射实例 学生 课程 成绩
查看>>
【CAS单点登录视频教程】 第04集 -- tomcat下配置https环境
查看>>
自适应网页布局经验
查看>>
Ubuntu apache 禁止目录浏览
查看>>