16.9 close方法.html
来自「javascript即用即差核心对象手册」· HTML 代码 · 共 17 行
HTML
17 行
<html>
<head>
<title>setTimeout方法演示</title>
<body >
<form name="frm">
<input type="button" value="关闭窗口" onClick="closeWindow()">
</form>
<script>
function closeWindow()
{
window.opener=null;
window.close();
}
</script>
</body>
</html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?