JS获取日期
/*获取时间**/
var date= new Date();
console.log(date);
/*获取星期几*/
var day = date.getDay();
console.log(day);
alert(day);
/*获取月份*/
var month = date.getMonth();
//月份从0开始
console.log(month);
/*获取年份*/
var year = date.getYear();
//年份2000以后为100+年份,比如2018=118
console.log(year);
js设置日期
/*设置日期*/
myDate.setDate(5);
myDate.setMonth(11);
myDate.setYear(2018);
console.log(myDate);