16.10.htm
来自「精通JavaScript动态网页编程(书)」· HTM 代码 · 共 16 行
HTM
16 行
<html>
<head><title>document.close()和document.open()</title></head>
<body>
<h1>document.close()和document.open()</h1><p>
这是原来的窗口
<script type="text/javascript">
var mywindow = window.open("","newwin", "height=300,width=300");
mywindow.document.open();
mywindow.document.write("<html><head><title>Test</title></head><br>");
mywindow.document.write("<body><h1>Hello!</h1><p>这是新打开的窗口</body></html>");
mywindow.document.close();
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?