#52001/10/5 19:45:50
看看这一段:-)
function greeting(){
Today = new Date()
hours = Today.getHours()
document.write("")
if (hours<4)
document.write("你好!太晚了,该去睡觉了!")
else if (hours<6)
document.write("你好!天快亮了,看日出去!")
else if (hours<8)
document.write("你好!一日之际,在于晨!")
else if (hours<10)
document.write("你好!现在是工作时间!")
else if (hours<11)
document.write("你好!饿了,该去吃饭了!")
else if (hours<13)
document.write("你好!午饭吃过了吧!")
else if (hours<16)
document.write("你好!现在最好睡个午觉!")
else if (hours<18)
document.write("你好!现在是不是很累了!")
else if (hours<22)
document.write("你好!看看有没有新游戏!")
else
document.write("你好!我们欢迎你!")
document.writeln("");
}
greeting()