html DOM document对象open()方法
open() 方法可打开一个新文档,并擦除当前文档的内容。语法:document.open(mimetype,replace)mimetype 可选。规定正在写的文档的类型。默认是 "text/html"。 replace 可选。当此参数设置后,可引起新文档从父文档继承历史条目。该方法将擦除当前 H
document.open(mimetype,replace)
<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>
原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。