JavaScript 时间值转换为指定格式的时间文本
把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');
声明:
1. 本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
2. 如果内容损害你的权益请联系客服QQ:1642748312给予处理。
码云笔记 » JavaScript 时间值转换为指定格式的时间文本
1. 本站所有文章教程及资源素材均来源于网络与用户分享或为本站原创,仅限用于学习和研究。
2. 如果内容损害你的权益请联系客服QQ:1642748312给予处理。
码云笔记 » JavaScript 时间值转换为指定格式的时间文本