Use HTML to write a dynamic web clock. The code is as follows: <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title>Clock Effects</title> </head> <script type="text/javascript"> function disptime(){ var today = new Date(); var hh=today.getHours(); var mm=today.getMinutes(); var ss = today.getSeconds(); document.getElementById("myclock").innerHTML="<h1>Now is—"+hh+":"+mm+":"+ss+"</h1>" } //The setInterval() method can call a function or calculate an expression according to the specified period var mytime = setInterval("disptime()",1000); </script> <body onload="disptime()"> <div id="myclock"></div> </body> </html> Summarize The above is what I introduced to you about writing a dynamic clock on a web page in HTML. I hope it will be helpful to you. If you have any questions, please leave me a message and I will reply to you in time. I would also like to thank everyone for their support of the 123WORDPRESS.COM website! |
<<: JavaScript article will show you how to play with web forms
>>: mysql method to recursively search for all child nodes of a menu node
Today, when I was looking at the laboratory proje...
Mini Program Data Cache Related Knowledge Data ca...
Table of contents Preface Jump to APP method URL ...
Table of contents Zabbix monitors Nginx Zabbix mo...
1. Install dependency packages yum -y install gcc...
Preface: Timestamp fields are often used in MySQL...
Preface: position:sticky is a new attribute of CS...
Preface The mini program has a very convenient AP...
HTML <dl> Tag #Definition and Usage The <...
Case 1 vue-cli builds the vue3 project, uploads t...
When using VMware Workstation to open a virtual m...
Today, let’s discuss an interesting topic: How mu...
This tag is not part of HTML3.2 and only supports ...
In the vertical direction, you can set the cell a...
As a programmer who has just learned Tomcat, this...