📄 ch11-13.htm
字号:
<!--======================================-->
<!-- 范例程序 CH11_13.HTML -->
<!--======================================-->
<HTML>
<HEAd>
<TITLE>close的应用</TITLE>
<Script Language="JavaScript">
function NewOne()
{
document.open()
document.writeln("<BODY BackGround='bg.jpg'>")
document.writeln("<PRE>")
document.writeln("<h2>")
document.writeln("床前明月光")
document.writeln("疑似地上霜")
document.writeln("</h2>")
document.writeln("</PRE>")
document.close()
document.writeln("<BODY BackGround='bg.jpg'>")
document.writeln("<PRE>")
document.writeln("<h2>")
document.writeln("举头望明月")
document.writeln("低头思故乡")
document.writeln("</h2>")
document.writeln("</PRE>")
}
</Script>
</HEAd>
<BODY BackGround="bg.jpg">
这是旧的内容<BR>
<Form Name="ThisForm">
<Input Type=Submit Name="Press"
Value="打开新文件" OnClick="NewOne()">
</Form>
</BOdY>
</HTML>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -