推荐于2021-01-22
展开全部
不知道你要的时间段是怎么分的,那我就根据我划分的时间段:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>时间段提示</title>
<script>
var date=new Date();
var h=date.getHours();//获取当前时间
if(h>=0&& h<12){
alert('早上好!');
}else if(h>=12 && h<18){
alert('下午好!');
}else if(h>=18 && h<=24){
alert('晚上好!');
}
</script>
</head>
希望对你有用。
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>时间段提示</title>
<script>
var date=new Date();
var h=date.getHours();//获取当前时间
if(h>=0&& h<12){
alert('早上好!');
}else if(h>=12 && h<18){
alert('下午好!');
}else if(h>=18 && h<=24){
alert('晚上好!');
}
</script>
</head>
希望对你有用。
2013-10-21
展开全部
<html>
<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>
<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>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2013-10-21
展开全部
<html>
<head>
<title>早上好</title>
</head>
<body>
下午好、晚上好
</body>
</html>
<head>
<title>早上好</title>
</head>
<body>
下午好、晚上好
</body>
</html>
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |