tk挠痒痒网址发布页-秘密武器
历史搜索

JavaScript 时间值转换为指定格式的时间文本

游客2025-05-16 01:44:01

把 JavaScript 里的时间值转换为指定格式的时间文本;

JavaScript 代码

/**
 * 时间服务
 */
let $TimeService = function () {
    let $this = this;

    /**
     * 输出格式化的文本
     * @param {Date} date 时间
     * @param {number} format 天数
     */
    this.ToStringFormat= function (date, format) {
        let _date = date;

        let _result = format;
        //const _Weeks = ['日', '一', '二', '三', '四', '五', '六'];

        _result = _result.replace(/yyyy|YYYY/, _date.getFullYear());
        _result = _result.replace(/yy|YY/, (_date.getYear() % 100).toString().padStart(2, '0'));

        let _month = (_date.getMonth() + 1).toString();
        _result = _result.replace(/MM/, _month.padStart(2, '0'));
        _result = _result.replace(/M/g, _month);

        //_result = _result.replace(/w|W/g, _Weeks[_date.getDay()]);

        _result = _result.replace(/dd|DD/, _date.getDate().toString().padStart(2, '0'));
        _result = _result.replace(/d|D/g, _date.getDate());

        _result = _result.replace(/hh|HH/, _date.getHours().toString().padStart(2, '0'));
        _result = _result.replace(/h|H/g, _date.getHours());
        _result = _result.replace(/mm/, _date.getMinutes().toString().padStart(2, '0'));
        _result = _result.replace(/m/g, _date.getMinutes());

        _result = _result.replace(/ss|SS/, _date.getSeconds().toString().padStart(2, '0'));
        _result = _result.replace(/s|S/g, _date.getSeconds());

        _result = _result.replace(/fff|fff/, _date.getMilliseconds().toString().padEnd(3, '0').substring(0, 3));
        _result = _result.replace(/ff|ff/, _date.getMilliseconds().toString().padEnd(2, '0').substring(0, 2));
        _result = _result.replace(/f|f/g, _date.getMilliseconds().toString().padEnd(1, '0').substring(0, 1));

        return _result;
    };

    /**
     * 时间增加天数
     * @param {Date} date 时间
     * @param {number} days 天数
     */
    this.AddDays: function (date, days) {
        if (!date) { return date; }
        if (!days) { return date; }
        return new Date(date.setDate(date.getDate() + days));
    };

};

使用方式

1.在 A.html 页面引用该 Js 文件;

2.js 代码

$TimeService.ToStringFormat(new Date(),'yyyy-MM-dd');
标签:JavaScript

本文是由用户"游客"发布,所有内容的版权归原作者所有。没有经过书面许可,任何单位或个人不得以任何形式复制、转载、引用本网站的内容。否则将追究法律责任。

相关专题