HTML DOM close() 方法
Document 對(duì)象定義和用法
close() 方法用于關(guān)閉瀏覽器窗口。
語(yǔ)法
document.close()
瀏覽器支持
所有主要瀏覽器都支持 close() 方法
實(shí)例
實(shí)例 1
打開一個(gè)輸出流,添加一些文本,然后關(guān)閉輸出流:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<script>
function createDoc(){
var doc=document.open("text/html","replace");
var txt="<!DOCTYPE html><html><body>學(xué)習(xí) HTML DOM 很有趣!</body></html>";
doc.write(txt);
doc.close();
}
</script>
</head>
<body>
<input type="button" value="新文檔" onclick="createDoc()">
</body>
</html>
<html>
<head>
<meta charset="utf-8">
<title>W3Cschool教程(w3cschool.cn)</title>
<script>
function createDoc(){
var doc=document.open("text/html","replace");
var txt="<!DOCTYPE html><html><body>學(xué)習(xí) HTML DOM 很有趣!</body></html>";
doc.write(txt);
doc.close();
}
</script>
</head>
<body>
<input type="button" value="新文檔" onclick="createDoc()">
</body>
</html>
嘗試一下 ?
實(shí)例 2
打開輸出流 (新窗口打開; about:blank),添加文本,然后關(guān)閉輸出流:
<html>
<body>
<script>
varw=window.open();
w.document.open();
w.document.write("<b>Hello World!</b>");
w.document.close();
</script>
</body>
</html>
<body>
<script>
varw=window.open();
w.document.open();
w.document.write("<b>Hello World!</b>");
w.document.close();
</script>
</body>
</html>
嘗試一下 ?
Document 對(duì)象
更多建議: