js获取任意周的开始时间和结束时间
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了js获取任意周的开始时间和结束时间相关的知识,希望对你有一定的参考价值。
2012-6 这个表示2012年的第6周。。怎么计算这周的开始时间和结束时间。。
在线等。。
oToday=new Date();
currentDay=oToday.getDay();
if(currentDay==0)currentDay=7
mondayTime=oToday.getTime()-(currentDay-1)*24*60*60*1000;
sundayTime=oToday.getTime()+(7-currentDay)*24*60*60*1000;
alert("今天是"+oToday.getDate()+"号,星期"+currentDay+"\r");
alert("周一是"+new Date(mondayTime).getDate()+"号,周日是"+new Date(sundayTime).getDate()+"号")
alert("周一 "+new Date(mondayTime).toLocaleDateString()+"\n周末 "+new Date(sundayTime).toLocaleDateString()+" "+new Date(mondayTime).toLocaleTimeString())
</script>追问
获取今天的我也会。。我要的是某年任意周的 开始时间
追答oToday=new Date();
这行你改为任意时间即可
以上是关于js获取任意周的开始时间和结束时间的主要内容,如果未能解决你的问题,请参考以下文章