Computer >> Máy Tính >  >> Lập trình >> Javascript

Làm cách nào để tạo hoặc đặt lại bộ đếm bằng JavaScript?


Để tạo bộ đếm, hãy sử dụng counterReset thuộc tính trong JavaScript. Bạn có thể thử chạy mã sau để tạo hoặc đặt lại một hoặc nhiều bộ đếm bằng JavaScript -

Ví dụ

<!DOCTYPE html>
<html>
   <head>
      <style>
         h2:before {
            counter-increment: section;
            content: counter(section) " Quiz ";
         }
      </style>
   </head>
   <body>
      <h1>Quizzes</h1>
      <p>Change the counterIncrement</p>
      <h2>Ruby</h2>
      <h2 id="myID">Java</h2>
      <h2>PHP</h2>
      <h2>Perl</h2>
      <button onclick="display()">Reset Counter</button>
      <script>
         function display() {
            document.body.style.counterReset = "section";
         }
      </script>
   </body>
</html>