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

HTML DOM 닫기() 메서드

<시간/>

HTML DOM close() 메서드는 출력 스트림을 닫는 데 사용됩니다. 창에 쓰기가 완료되었음을 나타내기 위해 수행됩니다. 매개변수를 사용하지 않으며 닫기 전에 이전 데이터를 모두 표시합니다.

구문

다음은 HTML DOM close() 메서드의 구문입니다. -

document.close()

예시

close() 메서드의 예를 살펴보겠습니다. -

<!DOCTYPE html>
<html>
<body>
<p>Click the below button to open an output stream put some text in it and finally close it.</p>
<button onclick="streamClose()">CLOSE STREAM</button>
<script>
   function streamClose() {
      document.open();
      document.write("<h1>SAMPLE HEADING</h1>");
      document.write("<h2>SAMPLE HEADING 2</h2>");
      document.write("<p>A paragraph</p>");
      document.close();
   }
</script>
</body>
</html>

출력

이것은 다음과 같은 출력을 생성합니다 -

HTML DOM 닫기() 메서드

CLOSE STREAM 클릭 시 -

HTML DOM 닫기() 메서드

클릭 시 streamclose() 메서드를 실행하는 CLOSE STREAM 버튼을 만들었습니다. −

<button onclick="streamClose()">CLOSE STREAM</button>

streamClose() 메서드는 새 스트림을 열고 문서에 작성된 이전 텍스트를 모두 지우는 문서의 open 메서드를 사용합니다. document.write를 사용하여 문서에

,

요소를 씁니다. 마지막으로 문서의 close() 메서드를 사용하여 입력 스트림을 닫습니다.−

function streamClose() {
   document.open();
   document.write("<h1>SAMPLE HEADING</h1>");
   document.write("<h2>SAMPLE HEADING 2</h2>");
   document.write("<p>A paragraph</p>");
   document.close();
}