获取当前时间的代码

Posted xh_Blog

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前时间的代码相关的知识,希望对你有一定的参考价值。

如标题:

<!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>

  

 

以上是关于获取当前时间的代码的主要内容,如果未能解决你的问题,请参考以下文章

没有使用 navController.currentDestination?.id 获取当前片段 ID

在 viewpager 中获取当前 Fragment 实例

web代码片段

常用python日期日志获取内容循环的代码片段

Android - 获取当前片段

在onBackPressed之外的活动中获取当前片段?