当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


HTML DOM close()用法及代码示例


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>

输出

这将产生以下输出 -

单击关闭流 -

我们创建了一个按钮 CLOSE STREAM,它将在单击时执行 streamclose() 方法 -

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

streamClose() 方法在文档上使用 open 方法,它打开一个新流并清除所有以前写在文档上的文本。使用 document.write 我们将 <h1> 、 <h2> 和 <p> 元素写入文档。最后,我们使用文档上的 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();
}

相关用法


注:本文由纯净天空筛选整理自AmitDiwan大神的英文原创作品 HTML DOM close() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。