var d = new Date()
theDay=d.getDay()
switch (theDay)
..........
........
var d = new Date()
theDay=d.getDay()
switch (theDay)
..........
........
d = new Date()
theDay=d.getDay()
switch (theDay)
get 在javascript中没有这个函数.更不能单独的使用.
在javascript中getday()是一个内置函数.用于取得返回日期.
与getTime() 类似..
d = new Date()
theDay=d.getDay() switch (theDay)
这些是JS的一个时间代码的判断~
可能是这样
var d = new Date() //获取当前日期并赋值给变量d
theDay = d.getDay() //获取一周中的日期值,范围是0-6;
switch(theDay) 通过switch分支结构判断日期;从而执行相应日期的代码;
switch(theDay){
case 0:
//如果是星期天,这执行此处代码;
break:
case 1:
//如果是星期一,这执行此处代码;
break:
......
}