QQ邮箱的提示挺人性的,标记一下

用这种提示代替“您好”,赞一个

        <script>
        
var hour = (new Date()).getHours();
        
if (hour < 4) {
            hello 
= "夜深了,";
        }
        
else if (hour < 7) {
            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 
= "夜深了,";
        }
        document.write(hello);
        
</script>
posted @ 2009-06-16 22:44  魔豆  阅读(296)  评论(0编辑  收藏  举报