根据不用时间段输出不同的问候语 温馨提示

<script>
function hello() {
    today=new Date();
    var day; var date; var hello;
    hour=new Date().getHours()
    if(hour < 6)hello='已经到了深夜,注意休息哦!'
    else if(hour < 9)hello='早上好!'
    else if(hour < 12)hello='上午好!'
    else if(hour < 14)hello='中午好!'
    else if(hour < 17)hello='下午好!'
    else if(hour < 19)hello='傍晚好!'
    else if(hour < 22)hello='晚上好!'
    else {hello='夜深了,注意休息哦!'}
    var webUrl = webUrl;
    document.write(' '+hello);
}
</script>

 

© 版权声明
THE END
喜欢就支持一下吧
点赞9赞赏 分享
评论 抢沙发

请登录后发表评论

    暂无评论内容