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

JavaScript로 HTML 요소를 숨기는 방법은 무엇입니까?


가시성 사용 요소를 숨기려면 JavaScript의 속성. 다음 코드를 실행하여 가시성 작업 방법을 배울 수 있습니다. 요소를 숨기는 속성 -

예시

<!DOCTYPE html>
<html>
   <body>
      <p id = "pid">Demo Text</p>

      <button type = "button" onclick = "displayHide()">Hide</button>
      <button type = "button" onclick = "displayShow()">Show</button>
     
      <script>
         function displayHide() {
            document.getElementById("pid").style.visibility = "hidden";
         }
         function displayShow() {
            document.getElementById("pid").style.visibility = "visible";
         }
      </script>
   </body>
</html>