博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js操作时间 加法 减法 计算 格式化时间
阅读量:5342 次
发布时间:2019-06-15

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

Date.prototype.Format = function (fmt) {      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;  }

  

function daysJian(){    var date = new Date();//获取当前时间    date.setDate(date.getDate()-1);//设置天数 -1 天     var time = date.Format("yyyyMMdd");  }

  

转载于:https://www.cnblogs.com/ProDoctor/p/6709243.html

你可能感兴趣的文章
使用vue的v-model自定义 checkbox组件
查看>>
[工具] Sublime Text 使用指南
查看>>
Hangfire在ASP.NET CORE中的简单实现方法
查看>>
Algorithm——何为算法?
查看>>
Web服务器的原理
查看>>
小强升职计读书笔记
查看>>
常用的107条Javascript
查看>>
#10015 灯泡(无向图连通性+二分)
查看>>
忘记root密码,怎么办
查看>>
linux设备驱动归纳总结(三):1.字符型设备之设备申请【转】
查看>>
《黑客与画家》 读书笔记
查看>>
bzoj4407: 于神之怒加强版
查看>>
mysql统计一张表中条目个数的方法
查看>>
ArcGIS多面体(multipatch)解析——引
查看>>
css3渐变画斜线 demo
查看>>
JS性能DOM优化
查看>>
设计模式 单例模式 使用模板及智能指针
查看>>
HAL层三类函数及其作用
查看>>
Odoo 去掉 恼人的 "上午"和"下午"
查看>>
web@h,c小总结
查看>>