Javascript 返回一年中指定的某个月份的天数
function DaysInMonth(iMonth, iYear)
{
var dDate = new Date(iYear, iMonth, 0);
return dDate.getDate();
}
Javascript 返回一年中指定的某个月份的天数
function DaysInMonth(iMonth, iYear)
{
var dDate = new Date(iYear, iMonth, 0);
return dDate.getDate();
}