gpt4 book ai didi

javascript - jQuery/Javascript - 明天 12 点 :55 date as string

转载 作者:行者123 更新时间:2023-12-02 17:10:26 25 4
gpt4 key购买 nike

在 PHP 中,我明天 12:55 的字符串将得到以下内容:

$date_string = ''.date('F').' '.date('j').', '.date('Y').' 12:55';

如果今天调用会输出:

July 22, 2014 12:55

我现在需要用纯 jquery/javascript 获取它,而不是依赖 PHP

我怎样才能得到这个完全相同的字符串?

最佳答案

var date = new Date(); // now

date.setHours(12);
date.setMinutes(55);
date.setDate(date.getDate() + 1); // add one day

要获取所需的字符串,您必须执行类似的操作

var months = ['January', 'February' ... etc];

var dateString = months[ date.getMonth() ] + ' ' +
date.getDate() + ', ' +
date.getFullYear() + ' ' +
date.getHours() + ':' +
date.getMinutes();

FIDDLE

关于javascript - jQuery/Javascript - 明天 12 点 :55 date as string,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24867242/

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