js操作时间 加法 减法 计算 格式化时间

Posted xuelei被占用了

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js操作时间 加法 减法 计算 格式化时间相关的知识,希望对你有一定的参考价值。

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");  
}  

  

以上是关于js操作时间 加法 减法 计算 格式化时间的主要内容,如果未能解决你的问题,请参考以下文章

MIPS计算器用减法和加法实现除法,避免DIV和REM指令

减法在 JS 中工作,但加法在 JS 中不起作用

为何js计算带有小数的加法的时候会出现误差?

为何js计算带有小数的加法的时候会出现误差?

js中的一元加法和一元减法

JS中全选加法的两个问题