gpt4 book ai didi

javascript - 如何以这种形式获得日期?

转载 作者:行者123 更新时间:2023-11-30 06:41:09 25 4
gpt4 key购买 nike

我需要以这种形式获取日期:

"12/31/2020 5:00 AM"

我写了这段代码:

var ExpireI = new Date ();
ExpireI.setTime(ExpireI.getTime() + (24 * 3600 * 1000));
alert(ExpireI.toGMTString());

但是它显示的是这样的:

Tue, 26 Jun 2012 10:26:35 GMT

那么,我怎样才能得到那种形式的约会呢?

最佳答案

试试这个

而不是这样做:

getDate()     // Returns the date
getMonth() // Returns the month
getFullYear() // Returns the year

对于您的情况,您可以使用这种方式:

alert(ExpireI.getFullYear() + "-" + ExpireI.getMonth() + "-" + ExpireI.getDate());

Fiddle这里...:)

关于javascript - 如何以这种形式获得日期?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11187608/

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