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

JavaScript로 하나 이상의 카운터를 증가시키는 방법은 무엇입니까?


counterIncrement 사용 카운터를 증가시키는 속성. 다음 코드를 실행하여 JavaScript로 하나 이상의 카운터를 증가시킬 수 있습니다 -

예시

<!DOCTYPE html>
<html>
   <head>
      <style>
         h2 {
            counter-increment: section;
         }
         h2:before {
            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()">Update Counter Increment</button>
      <script>
         function display() {
            document.getElementById("myID").style.counterIncrement = "subsection";
         }
      </script>
   </body>
</html>