javascript : 回调函数例子 博客分类: javascript javascript
程序员文章站
2024-03-14 08:08:34
...
数字时钟 digital_clock.html
参考书:[ JavaScript 权威指南 E6] 第13章
<!DOCTYPE html> <!-- This is an HTML5 file --> <html> <!-- The root element --> <head> <!-- Title, scripts & styles go here --> <title>Digital Clock</title> <script> // A script of js code // Define a function to display the current time function displayTime() { var elt = document.getElementById("clock"); // Find element with id="clock" var now = new Date(); // Get current time elt.innerHTML = now.toLocaleTimeString(); // Make elt display it setTimeout(displayTime, 1000); // Run again in 1 second } window.onload = displayTime; // Start displaying the time when document loads. </script> <style> /* A CSS stylesheet for the clock */ #clock { /* Style apply to element with id="clock" */ font: bold 24pt sans; /* Use a big bold font */ background: #ddf; /* On a light bluish-gray background */ padding: 10px; /* Surround it with some space */ border: solid black 2px; /* And a solid black border */ border-radius: 10px; /* Round the corners (where supported) */ } </style> </head> <body> <!-- The body is the displayed parts of the doc. --> <h1>Digital Clock</h1> <!-- Display a title --> <span id="clock"></span> <!-- The time gets inserted here --> </body> </html>
参考书:[ JavaScript 权威指南 E6] 第13章
推荐阅读
-
javascript : 回调函数例子 博客分类: javascript javascript
-
JavaScript 权威指南 第6版 中文目录 博客分类: 技术书籍 javascript
-
使用D3 Geo模块画澳大利亚地图 博客分类: JavaScript D3Geo数据可视化
-
JavaScript语言常量和变量 博客分类: 移动开发,cocos2dcocos2d-x Cocos2d-x
-
JavaScript数据类型 博客分类: cocos2d-x移动开发,cocos2d cocos2d-x
-
FineReport中如何用JavaScript解决控件值刷新不及时 博客分类: 报表技术 FineReportJavaScript刷新
-
【转】Web 通信 之 长连接、长轮询(long polling) 博客分类: 收藏javascript ajaxwebjavascript
-
JSP输出HTML时产生的大量空格和换行的去除方法 博客分类: JavaScript jsphtml空格换行
-
[转]全面理解javascript的caller,callee,call,apply概念(修改版) 博客分类: javascript
-
Yahoo!的 Exceptional Performance团队为改善 Web性能带来最佳实践。他们为此进行了一系!团队实践分享:网站性能优化的34条黄金守则 博客分类: javascript收藏