Home  >  Article  >  Web Front-end  >  Tutorial on making a dynamic clock for a webpage using HTML

Tutorial on making a dynamic clock for a webpage using HTML

巴扎黑
巴扎黑Original
2017-09-02 09:58:467163browse

This article introduces you to the effect of writing a dynamic web page clock in HTML through example code. Friends who need it can refer to it.

Write a dynamic web page clock in HTML. The code is as follows:


<!DOCTYPE html>  
<html>  
    <head>  
        <meta charset="UTF-8">  
        <title>时钟特效</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>现在是—"+hh+":"+mm+":"+ss+"</h1>"  
             
        }   
        //setInterval()方法可以按照指定的周期调用函数或计算表达式  
        var mytime = setInterval("disptime()",1000);  
    </script>  
    <body onload="disptime()">  
        <p id="myclock"></p>  
    </body>  
</html>

The above is the detailed content of Tutorial on making a dynamic clock for a webpage using HTML. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn