我有 2 个 DateFields 命名startDate
,endDate
我想将startDate
Selected date 设置为 Current months start date,并将endDate
Selected date 设置为 Current months End date。我怎样才能做到这一点?提前致谢...
问问题
3270 次
1 回答
5
你是这个意思?
package
{
import flash.display.Sprite;
public class DateExample extends Sprite
{
public function DateExample()
{
super();
var now:Date = new Date();
trace("now: " + now.toString());
var startDate:Date = new Date(now.fullYear, now.month, 1);
trace("start: " + startDate.toString());
var endDate:Date = new Date(now.fullYear, ++now.month, 0);
trace("end: " + endDate.toString());
}
}
}
输出:
现在:2011 年 10 月 21 日星期五 00:15:09 GMT-0500
开始:2011 年 10 月 1 日星期六 00:00:00 GMT-0500
结束:2011 年 10 月 31 日星期一 00:00:00 GMT-0500
于 2011-10-21T05:16:36.690 回答