Computer >> 컴퓨터 >  >> 프로그램 작성 >> JavaScript

JavaScript로 카운터를 생성하거나 재설정하는 방법은 무엇입니까?


카운터를 만들려면 counterReset을 사용하세요. JavaScript의 속성. 다음 코드를 실행하여 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>