基本上,我有这个:
document.write('DIVS/HTML go here')
仅在星期日,我希望它是:
document.write(' ')
空了,但仍然存在,以防我确实希望在特定日期填充某些东西。
我如何在我的JS文件中完成此操作?
答案 0 :(得分:0)
if (new Date().getDay() == 0)
{
/* it's Sunday */
}
else
{
/* it's not Sunday */
}
答案 1 :(得分:0)
if((new Date()).getDay() >=1)
{
// Monday - Saturday
document.write('DIVS/HTML go here');
}
else
{
// Sunday
document.write(' ');
}