码迷,mamicode.com
首页 > 其他好文 > 详细

[ActionScript 3.0] AS3 获取某年某月的天数(Get number of days in a month)

时间:2016-02-19 14:00:18      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:

function getNumberOfDays($year:int, $month:int):int
{
    var month:Date = new Date($year, $month + 1, 0);
    return month.date;
} 
 
//jan
trace(getNumberOfDays(2010, 0));  // traces 31
 
//feb
trace(getNumberOfDays(2010, 1)); // traces 28
 
//dec
trace(getNumberOfDays(2010, 11)); // traces 31

 

[ActionScript 3.0] AS3 获取某年某月的天数(Get number of days in a month)

标签:

原文地址:http://www.cnblogs.com/frost-yen/p/5200663.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!