gpt4 book ai didi

actionscript-3 - 在 ActionScript 中添加日期到日期

转载 作者:行者123 更新时间:2023-12-04 02:33:32 28 4
gpt4 key购买 nike

我们有一个应用程序,用户必须在其中输入一个日期,该日期的值不超过当前日期(用户使用应用程序的日期)之后的 30 天。这是一个 Flash 应用程序,因此我需要一种方法将 30 天添加到当前日期,并获得正确的日期。类似于 JavaScript:

myDate.setDate(myDate.getDate()+30);

或者在 C# 中:
DateTime.Now.Add(30);

ActionScript 中有这样的东西吗?

最佳答案

虽然其他答案肯定会起作用,但它就像做一样简单:

var dte:Date = new Date();
dte.date += 30;
//the date property is the day of the month, so on Sept. 15 2009 it will be 15

如有必要,这甚至会增加月份和年份。您也可以使用月和年属性执行此操作。

关于actionscript-3 - 在 ActionScript 中添加日期到日期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1425677/

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