js实现的时间

2009年11月18日 11:50:09 星期三

window.onload=function (){
  setInterval("document.getElementById('time').innerHTML=new Date().toLocaleString()+' 星期'+'日一二三四五六'.charAt(new Date().getDay());",1000);
 }

 

<script type="text/javascript">
            var now=(new Date()).getHours();
   if(now>0&&now<=6){
    document.write("午夜好,");
   }else if(now>6&&now<=11){
    document.write("早上好,");
   }else if(now>11&&now<=14){
    document.write("中午好,");
   }else if(now>14&&now<=18){
    document.write("下午好,");
   }else{
    document.write("晚上好,");
   }
   </script>

你可能感兴趣的:(JavaScript)