程序员人生 网站导航

html DOM document对象close()方法

栏目:htmlcss时间:2015-02-28 08:10:21

close() 方法可关闭1个由 document.open 方法打开的输出流,并显示选定的数据。

语法:

document.close()

该方法将关闭 open() 方法打开的文档流,并强迫地显示出所有缓存的输出内容。如果您使用 write() 方法动态地输出1个文档,必须记住当你这么做的时候要调用 close() 方法,以确保所有文档内容都能显示。

1旦调用了 close(),就不应当再次调用 write(),由于这会隐式地调用 open() 来擦除当前文档并开始1个新的文档。

例子:

<html>
<head>
<script type="text/javascript">
function createNewDoc()
  {
  var newDoc=document.open("text/html","replace");
  var txt="<html><body>Learning about the DOM is FUN!</body></html>";
  newDoc.write(txt);
  newDoc.close();
  }
</script>
</head>
<body>

<input type="button" value="Write to a new document"
onclick="createNewDoc()">

</body>
</html>
------分隔线----------------------------
------分隔线----------------------------

最新技术推荐