jquery 日期格式转化


    //时间格式化
    function formatDate(usedDay,fmt) {
        var usedDate = new Date(usedDay);
        var o = {
            "M+": usedDate.getMonth() + 1,//月份
            "d+": usedDate.getDate(),//日
            "h+": usedDate.getHours(),//小时
            "m+": usedDate.getMinutes(),//分
            "s+": usedDate.getSeconds(),//秒
            "q+": Math.floor((usedDate.getMonth() + 3)/3),//季度
            "S": usedDate.getMilliseconds()//毫秒
        };
        if (/(y+)/.test(fmt)) fmt = fmt.replace(RegExp.$1, (usedDate.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;
    }
    
    //方法调用
    formatDate(data.quotationList[i]["inquiryDate"],"yyyy-MM-dd")  //1526893881000时间戳

//传参乱码处理

content: ctx+"/cost/projectCost/uncommit?&name="+encodeURI(encodeURI(name)),
String name = URLDecoder.decode(user.getName(), "utf-8");
user.setName(name);

上一篇:SCI一区 | Matlab实现INFO-TCN-BiGRU-Attention向量加权算法优化时间卷积双向门控循环单元注意力机制多变量时间序列预测


下一篇:K8s学习五(资源调度_2)