码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前时间的代码

时间:2018-03-12 16:59:06      阅读:152      评论:0      收藏:0      [点我收藏+]

标签:body   test   nal   www   function   int   element   head   log   

如标题:

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
 <head>
  <title> Test  Date Now </title>
  <script type="text/javascript"> 
		window.onload = function() {  
			var show = document.getElementById("show");  
			setInterval(function() {   
				var time = new Date();   // 程序计时的月从0开始取值后+1   
				var m = time.getMonth() + 1;   
				var t = time.getFullYear() + "-" + m + "-"     
					+ time.getDate() + " " + time.getHours() + ":"     
					+ time.getMinutes() + ":" + time.getSeconds();   
					show.innerHTML = t;  
					
					//console.info(t);
			}, 1000); 

		};
</script>

 </head>

 <body>
  <div id="show"></div>
 </body>
</html>

  

 

获取当前时间的代码

标签:body   test   nal   www   function   int   element   head   log   

原文地址:https://www.cnblogs.com/YLQBL/p/8549412.html

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