gpt4 book ai didi

javascript - 在 Javascript 中,我怎样才能以这种格式 yyyymmdd 获取今天的日期

转载 作者:行者123 更新时间:2023-11-28 12:40:39 25 4
gpt4 key购买 nike

就像我需要以 20120924 (yyyymmdd) 等格式获取今天的日期。我如何在 javascript 中获取它。

最佳答案

您可以向日期原型(prototype)添加一个方法,以便可以在任何日期对象上使用它:

Date.prototype.toMyString = function () {

function padZero(obj) {
obj = obj + '';
if (obj.length == 1)
obj = "0" + obj
return obj;
}

var output = "";
output += this.getFullYear();
output += padZero(this.getMonth()+1);
output += padZero(this.getDate());

return output;
}

var d = new Date();
alert(d.toMyString()); // Today

var otherDate = new Date(2012,0,1);
alert(otherDate.toMyString());​ //Jan 1 2012

fiddle :http://jsfiddle.net/johnkoer/4rk7K/10/

关于javascript - 在 Javascript 中,我怎样才能以这种格式 yyyymmdd 获取今天的日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12565349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com