js判断早上好,上午好,下午好,傍晚好,晚上好


js判断早上好,上午好,下午好,傍晚好,晚上好

<script language="javaScript"> 
now = new Date(),hour = now.getHours() 
if(hour < 6){document.write("凌晨好!")} 
else if (hour < 9){document.write("早上好!")} 
else if (hour < 12){document.write("上午好!")} 
else if (hour < 14){document.write("中午好!")} 
else if (hour < 17){document.write("下午好!")} 
else if (hour < 19){document.write("傍晚好!")} 
else if (hour < 22){document.write("晚上好!")} 
else {document.write("夜里好!")} 


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM