else if( hours<18)
{document.write(''Good Afternoon !")}
其中''Good Afternoon !"
第一个双引号为两个单引号
应该为"
拷过去确实发现 else if( hours<18)
{document.write("Good Afternoon !")}你上面的左引号为两个单引号的而不是一个双引号。。。
else if( hours<18)
{document.write(''Good Afternoon !")}
你的上面这句话Good Afternoon 前的引号用的不是英文的双引号。
看看浏览器报什么错,就明白了。
firefox下,工具-》错误控制台 非常方便调试。