«removeclass» 태그된 질문

16
클래스 이름으로 요소를 제거 하시겠습니까?
클래스 이름을 가진 요소를 찾기 위해 아래 코드가 있습니다. // Get the element by their class name var cur_columns = document.getElementsByClassName('column'); // Now remove them for (var i = 0; i < cur_columns.length; i++) { } 제거하는 방법을 모르겠어요 ..... 부모를 참조해야하나요? 이를 처리하는 가장 좋은 방법은 무엇입니까? @ Karim79 …

6
하나를 제외한 모든 클래스 제거
글쎄요, 일부 jQuery 액션을 사용하면 특정 div에 많은 클래스를 추가 할 수 있습니다. <div class="cleanstate"></div> 몇 번의 클릭 등으로 div에 많은 클래스가 있다고 가정 해 보겠습니다. <div class="cleanstate bgred paddingleft allcaptions ..."></div> 그렇다면 하나를 제외한 모든 클래스를 제거하려면 어떻게해야합니까? 내가 생각 해낸 유일한 아이디어는 이것입니다. $('#container div.cleanstate').removeClass().addClass('cleanstate'); removeClass()모든 클래스를 죽이는 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.