먼저 getElementsByClassName()의 도움으로 추출 div 클래스를 추출하고 for 루프를 반복하고 OR 조건을 사용하여 특정 텍스트를 표시해야 합니다.
또한 yourDiv.style.display='none'으로 설정합니다.
다음은 자바스크립트 코드입니다 -
예시
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Document</title> <link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css"> <script src="https://code.jquery.com/jquery-1.12.4.js"></script> <script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script> </head> <body> <div class="block"> header </div> <div class="block"> content </div> <div class="block"> footer </div> <script> let attribute = document.getElementsByClassName('block'); for (let i = 0; i < attribute.length; i++) { let impDiv = attribute[i]; let value = impDiv.innerHTML.trim(); if (value == 'header' || value == 'footer') { impDiv.style.display = 'none'; } } </script> </body> </html>
위의 프로그램을 실행하려면 파일 이름을 anyName.html(index.html)로 저장하세요. . 파일을 마우스 오른쪽 버튼으로 클릭하고 VS 코드 편집기에서 라이브 서버로 열기 옵션을 선택합니다.
출력