사용자 도구

사이트 도구


wiki:howto:how_to_-_add_active_class_to_current_element

문서의 이전 판입니다!


HOW TO

  • description : How to add active class to current element
  • author : 오션
  • email : shlim@repia.com
  • lastupdate : 2021-04-07


Ref

How to add active class to current element

JavaScript를 사용하여 현재 요소에 액티브 클래스를 추가하는 방법을 학습합니다.

현재 눌려있고 활성화된 버튼을 강조표시합니다.

Active Button

Highlight the active/current (pressed) button.

Active Element

Step 1) Add HTML

<div id="myDIV">
  <button class="btn">1</button>
  <button class="btn active">2</button>
  <button class="btn">3</button>
  <button class="btn">4</button>
  <button class="btn">5</button>
</div>


Step 2) Add CSS

</* Style the buttons */
.btn {
  border: none;
  outline: none;
  padding: 10px 16px;
  background-color: #f1f1f1;
  cursor: pointer;
}
 
/* Style the active class (and buttons on mouse-over) */
.active, .btn:hover {
  background-color: #666;
  color: white;
}


Step 3) Add JavaScript

// Get the container element
var btnContainer
/volume1/web/dokuwiki/data/attic/wiki/howto/how_to_-_add_active_class_to_current_element.1617757634.txt.gz · 마지막으로 수정됨: 2022/03/10 19:52 (바깥 편집)