2


我有 2 个 DateFields 命名startDateendDate我想将startDateSelected date 设置为 Current months start date,并将endDateSelected date 设置为 Current months End date。我怎样才能做到这一点?提前致谢...

4

1 回答 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 回答