• 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>
    
  • 相关阅读:
    HDU 2544 (Djikstra)
    HDU 1237(表达式求值)
    HDU1690 (Floyd)
    《大道至简》读后感
    第6周总结
    第8周总结
    第7周总结
    第四周总结
    第5周总结
    java程序
  • 原文地址:https://www.cnblogs.com/cb168/p/4177924.html
Copyright © 2020-2023  润新知