//1.根据年度和月份,创建日期
//应该先对year,month进行整数及范围校验的。
var d = new Date()
d.setYear(year)
d.setMonth(month-1)
d.setDate(1)
console.log(d)
//获得周几
var weeks = ['周天','周1','周2','周3','周4','周5','周6']
return weeks[d.getDay()]
}
alert(getWeek(2016,5))
//校验没有增加,可以查看下W3school 中的方法。
http://www.w3school.com.cn/jsref/jsref_obj_date.asp
var time = new Date()alert(time.getDay())//显示的是当前星期(0~6)
知道现在该怎么做了吗?(提示:time.getUTCDate()表示当月的日)
自己动手吧,相关资料可以查阅下面的参考文档。
希望我的回答对你有所帮助!