码迷,mamicode.com
首页 > Web开发 > 详细

网站建设中用JS判断时间并显示不同内容

时间:2014-12-08 22:56:27      阅读:256      评论:0      收藏:0      [点我收藏+]

标签:http   io   ar   sp   java   on   bs   ad   html   

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>无标题文档</title>
</head>
<body>
<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("夜里好!")} 
</script>
</body>
</html>

网站建设中用JS判断时间并显示不同内容

标签:http   io   ar   sp   java   on   bs   ad   html   

原文地址:http://www.cnblogs.com/tanlingdangan/p/4152068.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!