标签:
1、获取某个月的天数
1 function getDate (year, month) { 2 return new Date(year, month + 1, 0).getDate(); 3 }
前端开发中的一些js小技巧
原文地址:http://www.cnblogs.com/wangez/p/5550411.html