如何使用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>

以上是 如何使用JavaScript创建或重置计数器? 的全部内容, 来源链接: utcz.com/z/316379.html

回到顶部