HTML DOM open() 方法
Document 對象定義和用法
open() 方法打開一個輸出流來收集document.write() 或document.writeln() 方法輸出的內(nèi)容。
調(diào)用 open() 方法打開一個新文檔并且用 write() 方法設(shè)置文檔內(nèi)容后,必須記住用 document.close() 方法關(guān)閉文檔,并迫使其內(nèi)容顯示出來。
注意:如果目標(biāo)文件已經(jīng)存在,它將被清除。如果這個方法沒有參數(shù),會顯示一個新窗口(about:blank)。
語法
document.open(MIMEtype,replace)
參數(shù) | 描述 |
---|---|
MIMEtype | 可選。規(guī)定正在寫的文檔的類型。默認(rèn)值是 "text/html"。 |
replace | 可選。當(dāng)此參數(shù)設(shè)置后,可引起新文檔從父文檔繼承歷史條目。 |
瀏覽器支持
所有主要瀏覽器都支持 open() 方法
實例
實例
打開一個輸出流并添加文本,然后關(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>
嘗試一下 ?
實例 2
打開一個輸出流 (一個新窗口; about:blank),并添加文本,然后關(guān)閉輸出流:
<html>
<body>
<script>
varw=window.open();
w.document.open();
w.document.write("<h1>Hello World!</h1>");
w.document.close();
</script>
</body>
</html>
<body>
<script>
varw=window.open();
w.document.open();
w.document.write("<h1>Hello World!</h1>");
w.document.close();
</script>
</body>
</html>
嘗試一下 ?
Document 對象
更多建議: