function sTime(){ var now, hour, txt, minu; now = new Date(); hour = now.getHours(); minu = now.getMinutes() >= 30 ? "30" : "00"; if(hour < 6){ txt = "凌晨"; }else if(hour < 9){ txt = "早上"; }else if(hour < 12){ txt = "早上"; }else if(hour < 14){ txt = "中午"; }else if(hour < 17){ txt = "下午"; }else{ txt = "晚上"; } txt = txt + hour + "点" + minu + "分"; document.write(txt); }
|
---|
|
---|
|
---|
|
---|
|
---|