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>