zoukankan      html  css  js  c++  java
  • javaScript日期

    日历

    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
    <html>
    <head>
    <title>mytime.html</title>
    
    <meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
    <meta http-equiv="description" content="this is my page">
    <meta http-equiv="content-type" content="text/html; charset=UTF-8">
    
    <!--<link rel="stylesheet" type="text/css" href="./styles.css">-->
    
    <script type="text/javascript">
    	function startTime() {
    		var today = new Date();
    		var y = today.getFullYear();
    		var mo = today.getMonth() + 1;
    		var d = today.getDate()
    
    		var h = today.getHours();
    		var m = today.getMinutes();
    		var s = today.getSeconds();
    
    		m = checkTime(m);
    		s = checkTime(s);
    		document.getElementById('txt').innerHTML = y + "/" + mo + "/" + d + " "
    				+ h + ":" + m + ":" + s;//ok
    		t = setTimeout('startTime()', 500)
    	}
    	function checkTime(i) {
    		if (i < 10)
    			i = "0" + i;
    		return i;
    	}
    </script>
    </head>
    
    
    <body onload="startTime()">
    	This is my Date clock.
    	<div id="txt"></div>
    	<br>
    </body>
    </html>
    
  • 相关阅读:
    BZOJ 3522 Hotel
    BZOJ 1864 三色二叉树
    396595
    CodeForces
    CodeForces
    CodeForces
    E. 数字串
    算术基本定理总结
    Cyclic Nacklace 杭电3746
    Period
  • 原文地址:https://www.cnblogs.com/cb168/p/4177924.html
Copyright © 2011-2022 走看看