Home > Web Front-end > JS Tutorial > body text

Create timer function using JS

php中世界最好的语言
Release: 2018-06-07 11:35:49
Original
2155 people have browsed it

This time I will bring you the timer function using JS. What are the precautions for using JS to make the timer function? The following is a practical case, let’s take a look.

Use setInterval to implement timing, and advance one to the minute after 60 seconds, and advance one to the hour after 60 minutes.

<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <title>JS计时器</title>
    <script>
      window.onload = function(){
      var mm = 0;
      var ss = 0;
      var str = '';
      var timer = setInterval(function(){
      str = "";
      if(++ss==60)
      {
      if(++mm==60)
      {
      mm=0;
      }
      ss=0;
      }
      str+=mm<10?"0"+mm:mm;
      str+=":";
      str+=ss<10?"0"+ss:ss;
      document.getElementById("d").innerHTML = str;
      },1000);
      };
    </script>
  </head>
  <body>
  <p id="d"></p>
  </body>
</html>
Copy after login

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

How to operate Vue to make a proxy agent

Use classes in ES6 to imitate Vue to make two-way binding Certainly

The above is the detailed content of Create timer function using JS. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!