[ActionScript 3.0] AS3 获取某年某月的天数(Get number of days in a month)
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[ActionScript 3.0] AS3 获取某年某月的天数(Get number of days in a month)相关的知识,希望对你有一定的参考价值。
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)的主要内容,如果未能解决你的问题,请参考以下文章
[ActionScript 3.0] as3处理xml的功能和遍历节点
[ActionScript 3.0] AS3.0 水面波纹效果
[ActionScript 3.0] AS3 对XML的操作,创建删除增加节点方法