2012年6月19日
摘要:
1 function getDays(month,year){ 2 var now=new Date(); 3 var day=new Date(year || now.getFullYear(), month || (now.getMonth() + 1), 0); 4 return day.getDate(); 5 } 阅读全文
posted @ 2012-06-19 17:59
justoo
阅读(89)
评论(0)
推荐(0)