Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> Javascript

จะสร้างหรือรีเซ็ตตัวนับด้วย JavaScript ได้อย่างไร


ในการสร้างตัวนับ ให้ใช้ counterReset คุณสมบัติในจาวาสคริปต์ คุณสามารถลองเรียกใช้รหัสต่อไปนี้เพื่อสร้างหรือรีเซ็ตตัวนับอย่างน้อยหนึ่งตัวด้วย JavaScript -

ตัวอย่าง

<!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>