zoukankan      html  css  js  c++  java
  • javascript格式化

    Date对象得到本地时间格式

    new Date().toLocaleDateString('ZH-CN')
    

    格式化

    function formatDate (dataStr, fmt) {
        const date = new Date(dataStr.replace(/-/g, "/"))
        if (/(y+)/.test(fmt)) {
            fmt = fmt.replace(RegExp.$1, (date.getFullYear() + '').substr(4 - RegExp.$1.length))
        }
        let o = {
            'M+': date.getMonth() + 1,
            'd+': date.getDate(),
            'h+': date.getHours(),
            'm+': date.getMinutes(),
            's+': date.getSeconds()
        }
        for (let k in o) {
            if (new RegExp(`(${k})`).test(fmt)) {
            let str = o[k] + ''
            fmt = fmt.replace(RegExp.$1, RegExp.$1.length === 1 ? str : padLeftZero(str))
            }
        }
        return fmt
    }
    function padLeftZero (str) {
        return ('00' + str).substr(str.length)
    }
    
    const date = new Date();
    const moment = date.getFullYear() + '-' + (date.getMonth()+1) + '-' + date.getDate();
    formatDate(moment, 'yyyy/MM/dd')
    
  • 相关阅读:
    jsp九大内置对象和4个域对象
    小甜点
    response编码
    request请求编码处理
    防盗链模拟
    request浏览器判断
    request获取ip
    ServletConfig
    HttpServlet原理
    Servlet,GenericServlet,httpServlet区别
  • 原文地址:https://www.cnblogs.com/sening/p/11596408.html
Copyright © 2011-2022 走看看