Latest web development tutorials

HTML DOM close () method

Document Object Reference Document Object

Definition and Usage

close () method is used to close the browser window.

grammar

document.close()


Browser Support

Internet ExplorerFirefoxOperaGoogle ChromeSafari

All major browsers support close () method


Examples

Example 1

Open an output stream, add some text, and then close the output stream:

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>本教程(w3big.com)</title>
<script>
function createDoc(){
    var doc=document.open("text/html","replace");
    var txt="<!DOCTYPE html><html><body>学习 HTML DOM 很有趣!</body></html>";
    doc.write(txt);
    doc.close();
}
</script>
</head>

<body>
<input type="button" value="新文档" onclick="createDoc()">
</body>
</html>

try it"

Example 2

Open the output stream (a new window opens; about: blank), add text, and then close the output stream:

<html>
<body>

<script>
var w=window.open();
w.document.open();
w.document.write("<b>Hello World!</b>");
w.document.close();
</script>

</body>
</html>

try it"


Document Object Reference Document Object