JS中,怎么写根据不同时间段弹出对话框提示不同问候语?如,八点以后弹出上午好?
1个回答
展开全部
<html>
<head>
<script language="javascript">
var now=new Date();
var hour=now.getHours();
if(hour<8&&hour>5)document.write("早上好!")
else if(hour>23||hour<5)document.write("网虫:该休息了,明天还有课呢!。")
else if(hour<12)document.write("上午好!")
else if(hour<18)document.write("下午好!")
else if(hour<21)document.write("晚上好!")
else if(hour<23)document.write("祝你晚安!")
</script>
</head>
</html>
<head>
<script language="javascript">
var now=new Date();
var hour=now.getHours();
if(hour<8&&hour>5)document.write("早上好!")
else if(hour>23||hour<5)document.write("网虫:该休息了,明天还有课呢!。")
else if(hour<12)document.write("上午好!")
else if(hour<18)document.write("下午好!")
else if(hour<21)document.write("晚上好!")
else if(hour<23)document.write("祝你晚安!")
</script>
</head>
</html>
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询