Please note, this is a STATIC archive of website developer.mozilla.org from 03 Nov 2016, cach3.com does not collect or store any user information, there is no "phishing" involved.

document.close

概述

document.close()方法用来关闭向当前文档的数据写入, 想要打开使用 document.open().

语法

document.close();

例子

// 打开一个文档,向其中写入数据
// 写入文档内容
// 关闭文档
document.open();
document.write("<p>文档内容</p>");
document.close();

规范

DOM Level 2 HTML: close() Method

文档标签和贡献者

 此页面的贡献者: teoli, jsx, ziyunfei
 最后编辑者: jsx,