我已经创建了这个脚本,以dd/mm/yyyy的格式提前计算10天的日期:

var MyDate = new Date();
var MyDateString = new Date();
MyDate.setDate(MyDate.getDate()+10);
MyDateString = MyDate.getDate() + '/' + (MyDate.getMonth()+1) + '/' + MyDate.getFullYear();

我需要通过将这些规则添加到脚本中,使日期在日期和月份组件上以前导零出现。我好像不能让它工作。

if (MyDate.getMonth < 10)getMonth = '0' + getMonth;

and

if (MyDate.getDate <10)get.Date = '0' + getDate;

如果有人能告诉我在哪里插入这些脚本,我会非常感激。


当前回答

现在你也可以使用String.prototype.padStart来快速简单地达到目标

String(new Date().getMonth() + 1).padStart(2, '0')

可用性可以在caniuse进行评估

var date = new Date()

var year = date.getFullYear()
var month = String(date.getMonth() + 1).padStart(2, '0')
var day = String(date.getDate()).padStart(2, '0')

console.log('%s/%s/%s', month, day, year)

检查

var date = new date ('7/4/2021') var year = date.getFullYear() var month = String(date.getMonth() + 1).padStart(2, '0') var day = String(date.getDate())。padStart (2, ' 0 ') /** *预期产出:2021年4月7日 * / Console.log ('%s/%s/%s',月,日,年)

旧浏览器的填充

String.prototype.padStart || Object.defineProperty(String.prototype, 'padStart', {
    configurable : true,
    writable : true,
    value : function (targetLength, padString) {
        'use strict'
        /**
         * String.prototype.padStart polyfill
         * https://stackoverflow.com/questions/3605214/javascript-add-leading-zeroes-to-date
         */
        targetLength = targetLength | 0
        padString = arguments.length > 1 ? String(padString) : ' '

        if (this.length < targetLength && padString.length) {
            targetLength = targetLength - this.length

            while (padString.length < targetLength) {
                padString += padString
            }

            return padString.slice(0, targetLength) + this
        } else {
            return this
        }
    }
})

其他回答

var MyDate = new Date();
var MyDateString = '';
MyDate.setDate(MyDate.getDate());
var tempoMonth = (MyDate.getMonth()+1);
var tempoDate = (MyDate.getDate());
if (tempoMonth < 10) tempoMonth = '0' + tempoMonth;
if (tempoDate < 10) tempoDate = '0' + tempoDate;
MyDateString = tempoDate + '/' + tempoMonth + '/' + MyDate.getFullYear();

下面的目的是提取配置,挂钩到日期。原型和应用配置。

我已经使用了一个数组来存储时间块,当我将()它作为一个Date对象时,它返回我要迭代的长度。完成后,我可以对返回值使用join。

这似乎工作得相当快:0.016毫秒

// Date protoype
Date.prototype.formatTime = function (options) {
    var i = 0,
        time = [],
        len = time.push(this.getHours(), this.getMinutes(), this.getSeconds());

    for (; i < len; i += 1) {
        var tick = time[i];
        time[i] = tick < 10 ? options.pad + tick : tick;
    }

    return time.join(options.separator);
};

// Setup output
var cfg = {
    fieldClock: "#fieldClock",
    options: {
        pad: "0",
        separator: ":",
        tick: 1000
    }
};

// Define functionality
function startTime() {
    var clock = $(cfg.fieldClock),
        now = new Date().formatTime(cfg.options);

    clock.val(now);
    setTimeout(startTime, cfg.options.tick);
}

// Run once
startTime();

演示:http://jsfiddle.net/tive/U4MZ3/

一个简单的dateformat库拯救了我的生命(GitHub):

Node.js: var dateFormat = require(" dateFormat "); ES6: import dateFormat from dateFormat;

const now = new Date();             // consider 3rd of December 1993

const full = dateFormat(today, "yyyy-mm-dd");  // 1993-12-03
const day = dateFormat(today, "dd");           // 03
const month = dateFormat(today, "mm");         // 12
const year = dateFormat(today, "yyyy");        // 1993

值得一提的是,它支持广泛的掩模选项。

 let date = new Date();
 let dd = date.getDate();//day of month

 let mm = date.getMonth();// month
 let yyyy = date.getFullYear();//day of week
 if (dd < 10) {//if less then 10 add a leading zero
     dd = "0" + dd;
   }
 if (mm < 10) {
    mm = "0" + mm;//if less then 10 add a leading zero
  }

现代的方式

新的现代方法是使用toLocaleDateString,因为它不仅允许您使用适当的本地化格式化日期,而且甚至可以传递格式选项以实现所需的结果:

const date = new date (2018,2,1) Const result = date。toLocaleDateString("en-GB",{//你可以使用undefined作为第一个参数 :“数值”, 月:“便是”, 天:“便是”, }) Console.log (result) //输出" 01/03/2018 "

或者使用一个时态对象(仍在提案中,caniuse):

const date = new Temporal.PlainDate(2018, 3, 1) // also works with zoned date
const result = date.toLocaleString("en-GB", { // you can use undefined as first argument
  year: "numeric",
  month: "2-digit",
  day: "2-digit",
})
console.log(result) // outputs “01/03/2018”

当您使用undefined作为第一个参数时,它将检测浏览器语言。或者,你也可以在年份选项上使用2位数。

性能

如果您计划格式化大量的日期,您应该考虑使用Intl。DateTimeFormat相反:

const formatter = new Intl。DateTimeFormat("en-GB",{// <-重用我 :“数值”, 月:“便是”, 天:“便是”, }) const date = new date(2018,2,1) //也可以是一个时态对象 Const result = formatter.format(date) Console.log (result) //输出" 01/03/2018 "

格式化程序与Date和Temporal对象兼容。

历史上的日期

不像在Temporal构造函数中,0到99之间的年份将在Date构造函数中被解释为20世纪的年份。为了防止这种情况,初始化日期如下:

const date = new Date()
date.setFullYear(18, 2, 1) // the year is A.D. 18

这对于Temporal对象来说不是必需的,但是1000年以下的年份在所有情况下都不包含前导零,因为格式化器(为Date and Temporal API共享)根本不支持4位格式。在这种情况下,你必须手动格式化(见下文)。

适用于ISO 8601格式

如果你想以YYYY-MM-DD格式(ISO 8601)获取日期,解决方案看起来不同:

const date = new date(日期。Utc (2018, 2, 1)) [0] . const result = date.toISOString().split('T' Console.log (result) //输出" 2018-03-01 "

您的输入日期应该是UTC格式,否则toISOString()将为您修复该格式。这是通过使用Date来完成的。如上所示。

ISO 8601格式的历史日期

不像在Temporal构造函数中,0到99之间的年份将在Date构造函数中被解释为20世纪的年份。为了防止这种情况,将日期初始化为ISO 8601格式:

const date = new Date()
date.setUTCFullYear(18, 2, 1) // the year is A.D. 18

请注意,日期在1000年之前或9999年之后的Temporal对象的ISO格式与遗留的Date API相比具有不同的格式。建议退回到自定义格式,以在所有情况下强制执行4位数年。

自定义年份的4位格式

遗憾的是,格式化程序不支持年份的前导零。没有4位数字选项。这对于Temporal对象也将保持不变,因为它们确实共享相同的格式化程序。

幸运的是,Date API的ISO格式总是在年份中显示至少4位数字,尽管Temporal对象不会。因此,至少对于Date API,你可以通过使用ISO 8601格式方法的部分手动格式化方法来格式化1000年之前的历史日期:

const date = new date () 日期。setUTCFullYear(18,2,1) const ymd = date.toISOString () .split (T) [0] .split(“-”) Const result = ' ${ymd[2]}/${ymd[1]}/${ymd[0]} ' Console.log (result) //输出" 01/03/0018 "

对于一个Temporal对象,一个不同的路由是必要的,因为ISOYearString在1000年之前和9999年之后的格式是不同的,就像前面提到的:

const date = new Temporal.PlainDate(2018, 3, 1) // also works with zoned date
const zeroPad = (n, digits) => n.toString().padStart(digits, '0');
const result = `${zeroPad(date.day, 2)}/${zeroPad(date.month, 2)}/${zeroPad(date.year, 4)}`;
console.log(result) // outputs “01/03/0018”

杂项

对于日期和时间API,还有toLocaleTimeString,它允许你本地化和格式化日期的时间。