“星期” 显示不出来!哪里出错了???
怎么解决?
2015-09-30
var d= now.getDay();
m=checkTime(m)
s=checkTime(s)
switch(d) {
case 0:
{strDate=" 星期日 "}break;
case 1:
{strDate=" 星期一 "}break;
case 2:
{strDate=" 星期二 "}break;
case 3:
{strDate=" 星期三 "}break;
case 4:
{strDate=" 星期四 "}break;
case 5:
{strDate=" 星期五 "}break;
case 6:
{strDate=" 星期六 "}break;
case 7:
{strDate=" 星期日 "}break;
}
document.getElementById("show").innerHTML=""+year+"年"+month+"月"+day+"日 "+strDate +h+":"+m+":"+s;
t=setTimeout('showTime()',500)
举报