function mGetdate(){
var date = new Date();
var year = date.getFullYear();
var month = date.getMonth() + 1;
return new Date(year,month,0).getDate();//当第三个参数传的值为零时,可以获取当月月份的天数
}
ps:有关于Date对象详细的用法,请移至:https://developer.mozilla.org/zh-CN/docs/Web/javascript/Reference/Global_Objects/Date