JavaScript取当前年、月、日
JavaScript 取得当前年月日的方法:
var today = new Date();//获得当前日期
var year = today.getFullYear();//获得年份
var month = today.getMonth() + 1;//此方法获得的月份是从0---11,所以要加1才是当前月份
var day = today.getDate();//获得当前日期
JavaScript 取得当前年月日的方法:
var today = new Date();//获得当前日期
var year = today.getFullYear();//获得年份
var month = today.getMonth() + 1;//此方法获得的月份是从0---11,所以要加1才是当前月份
var day = today.getDate();//获得当前日期