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 …