gpt4 book ai didi

javascript - 将日期转换为天数然后做一些事情

转载 作者:行者123 更新时间:2023-11-30 07:27:58 24 4
gpt4 key购买 nike

我希望用户输入一个日期。使用表格,并在后台将其转换为天数。然后扣除一定天数,然后将其转换回日期。

例子:

输入您的出生日期。

-- 转换为 xx 天数 (dateindays)

然后使newtotal=dateindays-280

将 newtotal 转换为日期。

任何人都可以指出我这样做的正确方向,或者他们知道这样做的一些功能吗?

假设:用户输入日期 1980 年 7 月 13 日我们用js把这个换算成总天数11453天

然后创建新函数:subtotal=11453-280

并将这些天数转换为日期,并在屏幕上回显。

最佳答案

var d1 = Date.parse("13 July 1980");
d1 = d1 - 24192000000; // 280 days in milliseconds

var newDate = new Date(d1);

console.log(newDate); // will return a date object that represents Oct 07 1979

然后使用以下链接对其进行格式化: http://www.webdevelopersnotes.com/tips/html/10_ways_to_format_time_and_date_using_javascript.php3

感谢这个 SO 问题的链接: Where can I find documentation on formatting a date in JavaScript?

关于javascript - 将日期转换为天数然后做一些事情,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8205539/

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