码迷,mamicode.com
首页 > Web开发 > 详细

js 当前系统时间

时间:2014-10-31 11:39:49      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:style   blog   io   color   ar   java   sp   div   on   

  

 <script language=Javascript> 
  function time(){
  
  
  
    //获得显示时间的div
    t_div = document.getElementById(showtime);
    
    
   var now=new Date()

t_div.innerHTML = "现在是"+now.getFullYear()+""+(now.getMonth()+1)+""+now.getDate()+""+now.getHours()+""+now.getMinutes()+""+now.getSeconds()+"";
  
  //等待一秒钟后调用time方法,由于settimeout在time方法内,所以可以无限调用
  
  setTimeout(time,1000);
   
   
   
   
   
  }
</script>

 

js 当前系统时间

标签:style   blog   io   color   ar   java   sp   div   on   

原文地址:http://www.cnblogs.com/xinlinux/p/4064477.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!