但是不起作用,请帮忙 我只想告诉我们今天是否是星期天添加类calDisable
此来源
https://github.com/Thibor/jsRapCalendar
在此代码中,我想在周日取消
我尝试
this.week = this.opt.date.getDay();
if(this.week == 4)
d.addClass('calDisable');
答案 0 :(得分:1)
getDay()
方法的索引为零,而周日是一周的第一天,因此您需要在this.week === 0
时运行所需的任何代码
答案 1 :(得分:0)
this.week = this.opt.date.getDay();
if(this.week === 0)
d.addClass('calDisable');
这应该有效。不确定您为什么要与4比较,因为4代表星期四。
JavaScript getDay()方法返回的值是对应于星期几的整数。星期日为0,星期一为1,.....,星期五为5,星期六为6。