求一段简单的javascript代码?
星期一就转向到1.htm星期二就转各到2.htm星期日就转向到7.htm下周一还是转向到1.htm依此类推。...
星期一就转向到1.htm
星期二就转各到2.htm
星期日就转向到7.htm
下周一还是转向到1.htm
依此类推。 展开
星期二就转各到2.htm
星期日就转向到7.htm
下周一还是转向到1.htm
依此类推。 展开
3个回答
展开全部
首先你得说明白,你的这个时间是以客户端机上的时间为依据吗?还是说你服务端有输出当前时间字串到页面上?? 若为前者,写法如下:
if (new Date().getDay() === 0) window.location.href = '0.html';
if (new Date().getDay() === 1) window.location.href = '1.html';
if (new Date().getDay() === 2) window.location.href = '2.html';
if (new Date().getDay() === 0) window.location.href = '0.html';
if (new Date().getDay() === 1) window.location.href = '1.html';
if (new Date().getDay() === 2) window.location.href = '2.html';
追问
能写完整吗?星期天是7还是0?
追答
0 表示星期天
展开全部
function GetToday ()
{
var Today = new Date () ;
/*星期方法*/
var DayInMonth = Today.getDay() ;
if(DayInMonth==1)
{
window.location="1.html";
} else if(DayInMonth==2)
{
window.location="2.html";
}
//以此类推
}
{
var Today = new Date () ;
/*星期方法*/
var DayInMonth = Today.getDay() ;
if(DayInMonth==1)
{
window.location="1.html";
} else if(DayInMonth==2)
{
window.location="2.html";
}
//以此类推
}
追问
能写完整吗?星期天是7还是0?
追答
function GetToday ()
{
var Today = new Date () ;
/*星期方法*/
var DayInMonth = Today.getDay() ;
if(DayInMonth==0)
{
window.location="7.html";
}else
{
window.location=DayInMonth+".html";
}
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
var d=new Date().getDay()
d=d?d:7
window.location.href=d+".html";
d=d?d:7
window.location.href=d+".html";
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询